May 11, 2003 #1 tapks IS-IT--Management Sep 6, 2001 72 IN HI! In SQL Server 7.0 I can create a table with wrong syntax i.e. create table Test (id int, descr varchar(10),) Can anybody tells me whether this whether it is a feature in SQL Server or so. Pl help. Tap_Ks
HI! In SQL Server 7.0 I can create a table with wrong syntax i.e. create table Test (id int, descr varchar(10),) Can anybody tells me whether this whether it is a feature in SQL Server or so. Pl help. Tap_Ks
May 12, 2003 #2 ClaireHCM IS-IT--Management Mar 26, 2003 772 US Correct it to create table Test (id int, descr varchar(10)) Upvote 0 Downvote
May 12, 2003 Thread starter #3 tapks IS-IT--Management Sep 6, 2001 72 IN Thats ok. I want to know that whether it is bug of MS SQL server or not. Did Anybody face this before ? Pl let me know. Upvote 0 Downvote
Thats ok. I want to know that whether it is bug of MS SQL server or not. Did Anybody face this before ? Pl let me know.
May 12, 2003 #4 tlbroadbent MIS Mar 16, 2001 9,982 US Bug or feature? It is allowed in SQL Server 7 and 2000. SQL must treat the missing parameter as NULL. If you want to get the best answer for your question read faq183-874 and faq183-3179. Terry L. Broadbent - DBA SQL Server Page: http://tlbroadbent.home.attbi.com/sql/sql_articles.htm Upvote 0 Downvote
Bug or feature? It is allowed in SQL Server 7 and 2000. SQL must treat the missing parameter as NULL. If you want to get the best answer for your question read faq183-874 and faq183-3179. Terry L. Broadbent - DBA SQL Server Page: http://tlbroadbent.home.attbi.com/sql/sql_articles.htm