 




<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>IT Answers &#187; CREATE TABLE statement</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/tag/create-table-statement/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers</link>
	<description></description>
	<lastBuildDate>Sat, 18 May 2013 12:12:40 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>ORA-00902 invalid datatype when trying to create a table with primary key based on two columns in Oracle 10g</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/ora-00902-invalid-datatype/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/ora-00902-invalid-datatype/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 17:12:16 +0000</pubDate>
		<dc:creator>Techguys</dc:creator>
				<category><![CDATA[CREATE TABLE statement]]></category>
		<category><![CDATA[Database issues]]></category>
		<category><![CDATA[Oracle 10.2.0.4]]></category>
		<category><![CDATA[Oracle 10g error messages]]></category>
		<category><![CDATA[Oracle Table]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I was trying to create a table with primary key based on two columns. Here is the create table statement: CREATE TABLE SECURITY_PASSWORD ( USER_NAME VARCHAR2 (25 BYTE) NOT NULL, USER_PASSWORD VARCHAR2 (25 BYTE) NOT NULL, CREATED_DATE DATE NOT NULL, CONSTRAINT security_password_pk PRIMARY_KEY (user_name,user_password) ); Unfortunately I keep getting error message: ORA-00902 invalid datatype.This is [...]]]></description>
				<content:encoded><![CDATA[<p>I was trying to create a table with primary key based on two columns. Here is the create table statement: CREATE TABLE SECURITY_PASSWORD ( USER_NAME VARCHAR2 (25 BYTE) NOT NULL, USER_PASSWORD VARCHAR2 (25 BYTE) NOT NULL, CREATED_DATE DATE NOT NULL, CONSTRAINT security_password_pk PRIMARY_KEY (user_name,user_password) ); Unfortunately I keep getting error message: ORA-00902 invalid datatype.This is on Oracle 10g version 10.2.o.4 Need help. Thank you</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/ora-00902-invalid-datatype/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>procedure create with compilation error ora-6550</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/procedure-create-with-compilation-error/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/procedure-create-with-compilation-error/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 07:15:07 +0000</pubDate>
		<dc:creator>Yagnesh</dc:creator>
				<category><![CDATA[CREATE TABLE statement]]></category>
		<category><![CDATA[ora-6550]]></category>
		<category><![CDATA[Oracle error messages]]></category>
		<category><![CDATA[Syntax errors]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[i created table staff with two column a number(3),b number(3) then created procedure p1 but it shows error as procedure created with compilation error &#038; during insert ORA-6550 error at line 1 column 7 create table staff(fno number(3),lno number(3)); create or replace procedure p1 (a in number,b in number) begin insert into staff(fno,lno) values(a,b); end [...]]]></description>
				<content:encoded><![CDATA[<p>i created table staff with two column a number(3),b number(3) then created procedure p1 but it shows error as procedure created with compilation error &#038; during insert ORA-6550 error at line 1 column 7<br/><br/> create table staff(fno number(3),lno number(3));<br/><br/> create or replace procedure p1 (a in number,b in number) begin insert into staff(fno,lno) values(a,b);<br/><br/> end p1; <br/><br/> execute p1(1,2);,<br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/procedure-create-with-compilation-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Msg 102, level 15, State 1, Line 14</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/msg-102-level-15-state-1-line-14/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/msg-102-level-15-state-1-line-14/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 18:54:05 +0000</pubDate>
		<dc:creator>MasterK</dc:creator>
				<category><![CDATA[CREATE TABLE statement]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Stored Procedures]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hi, I&#8217;m ttrying to create my db tables in a stored procedure and I keep getting the error that the syntax is incorrect around the &#8216;ON&#8217; on the line &#8220;SET ANSI_NULLS ON&#8221;. Could you please help me? I can&#8217;t see what&#8217;s wrong. Here&#8217;s my code:  CREATE PROCEDURE InsertDBTables  AS  BEGIN  SET NOCOUNT ON;  SET ANSI_NULLS [...]]]></description>
				<content:encoded><![CDATA[<p>Hi, I&#8217;m ttrying to create my db tables in a stored procedure and I keep getting the error that the syntax is incorrect around the &#8216;ON&#8217; on the line &#8220;SET ANSI_NULLS ON&#8221;. Could you please help me? I can&#8217;t see what&#8217;s wrong. Here&#8217;s my code: </p>
<div></div>
<div>CREATE PROCEDURE InsertDBTables </div>
<div>AS </div>
<div>BEGIN 	</div>
<div>SET NOCOUNT ON; </div>
<div>SET ANSI_NULLS ON </div>
<div>GO </div>
<div>SET QUOTED_IDENTIFIER ON </div>
<div>GO </div>
<div>SET ANSI_PADDING ON </div>
<div>GO </div>
<div> /** Table ETUDIANT **/ </div>
<div>/****** Object:  Table [dbo].[ETUDIANT]    Script Date: 11/19/2009 09:20:50 ******/ </div>
<div>CREATE TABLE [dbo].[ETUDIANT](</div>
<div>	[MATRICULE] [char](7) NOT NULL,</div>
<div>	[MOT_PASSE_ETU] [varchar](50) NOT NULL,</div>
<div>	[NOM_ETU] [varchar](50) NOT NULL,</div>
<div>	[PRENOM_ETU] [varchar](50) NOT NULL,</div>
<div>	[SEXE_ETU] [Bit] NOT NULL,</div>
<div>	[TEL_ETU] [varchar](20) NULL,</div>
<div>	[EMAIL_ETU] [varchar](75) NOT NULL,</div>
<div>	[COHORTE] [numeric](4, 0) NOT NULL,</div>
<div>	[TYPE_STAGE_INSCR] [numeric](1, 0) NOT NULL,</div>
<div>	[STATUT_ETU] [numeric](1, 0) NOT NULL DEFAULT ((1)),</div>
<div>	[NUM_STAGE] [numeric](6, 0) NULL,</div>
<div> CONSTRAINT [PK_MATRICULE] PRIMARY KEY CLUSTERED </div>
<div>(</div>
<div>	[MATRICULE] ASC</div>
<div>)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]</div>
<div>) ON [PRIMARY]</div>
<div></div>
<div>GO</div>
<div>SET ANSI_PADDING OFF</div>
<div>END </div>
<div>GO</div>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/msg-102-level-15-state-1-line-14/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Create table by comparising 2 tables</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/create-table-by-comparising-2-tables/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/create-table-by-comparising-2-tables/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 04:38:26 +0000</pubDate>
		<dc:creator>Gooies</dc:creator>
				<category><![CDATA[Access conditional expressions]]></category>
		<category><![CDATA[CREATE TABLE statement]]></category>
		<category><![CDATA[Database programming]]></category>
		<category><![CDATA[Microsoft Access]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I am new at Access but have some help with creating a db. I would like to know if it is possible to compare table 1: prior data and table 2: current data, and then create a table 3, with all the changes/deletions from the 1st table to the 2nd. All the data is workflow [...]]]></description>
				<content:encoded><![CDATA[<p>I am new at Access but have some help with creating a db.  I would like to know if it is possible to compare table 1: prior data and table 2: current data, and then create a table 3, with all the changes/deletions from the 1st table to the 2nd.  All the data is workflow tasks that are dates.  I need a new table that will show all the updated dates, new dates, and removed dates.  is that possible?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/create-table-by-comparising-2-tables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create Dynamic DDS for a PF(Physical File In AS/400)</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-to-create-dynamic-dds-for-a-pfphysical-file-in-as400/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/how-to-create-dynamic-dds-for-a-pfphysical-file-in-as400/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 08:50:43 +0000</pubDate>
		<dc:creator>Ugan</dc:creator>
				<category><![CDATA[CREATE TABLE statement]]></category>
		<category><![CDATA[DDS]]></category>
		<category><![CDATA[Physical File]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[New Discussion Post by JohnAndersen]]></description>
				<content:encoded><![CDATA[New Discussion Post by JohnAndersen]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/how-to-create-dynamic-dds-for-a-pfphysical-file-in-as400/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Table creation in SQL Server 2005</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/table-creation-in-sql-server-2005/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/table-creation-in-sql-server-2005/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 16:38:31 +0000</pubDate>
		<dc:creator>Alediamo</dc:creator>
				<category><![CDATA[CREATE TABLE statement]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server 2005]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hi, I need to prevent users to use CREATE TABLE but I need them to be able to execute a stored procedure that creates a table. Is it possible to allow users to create tables in SQL Server 2005 only through a stored procedure? Thanks in advance.]]></description>
				<content:encoded><![CDATA[<p>Hi,</p>
<p>I need to prevent users to use CREATE TABLE but I need them to be able to execute a stored procedure that creates a table.</p>
<p>Is it possible to allow users to create tables in SQL Server 2005 only through a stored procedure?</p>
<p>Thanks in advance.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/table-creation-in-sql-server-2005/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>table storing in oracle 10g</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/table-storing-in-oracle-10g/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/table-storing-in-oracle-10g/#comments</comments>
		<pubDate>Thu, 05 Jun 2008 16:47:23 +0000</pubDate>
		<dc:creator>Chandan 002</dc:creator>
				<category><![CDATA[CREATE TABLE statement]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Oracle 10g]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[where does create table get stored in oracle 10g]]></description>
				<content:encoded><![CDATA[<p>where does create table get stored in oracle 10g</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/table-storing-in-oracle-10g/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 3/26 queries in 0.035 seconds using memcached
Object Caching 709/802 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-18 15:50:40 -->