Viewing 6 posts - 1 through 6 (of 6 total)
To get the full SQL Server 2005 (ex Yukno) you need to have an MSDN subscription or be on the official Beta Program. You could try having a play with...
December 8, 2004 at 2:02 am
It looks like you are using SQLExpress - if this is the case then this uses the sqlcmd.exe utility, it has a similar syntax to osql
October 26, 2004 at 1:13 am
BOL says up to 2 GB in a single value. But note that if you are using the MSDE version of SQL Server the max size of the DB is...
August 12, 2004 at 3:03 am
I would not use the =* *= syntax; BOL states that syntax may not be supported in a future version of SQL Server. Instead use the ANSI SQL-92 syntax LEFT OUTER JOIN...
April 20, 2004 at 1:06 am
You can add the "with(ROWLOCK)" to the inserts and deletes. I always add this to UPDATES, INSERTS and DELETES and the "with(NOLOCK)" to SELECT statements. Also I have noticed in...
March 31, 2004 at 12:30 am
Hi,
you can call another script from within an osql script (like oracle @) by using the osql !! command to call another instance of osql.
e.g script1.sql
!!osql -d -U -P -S -n -i...
March 2, 2004 at 3:02 am
Viewing 6 posts - 1 through 6 (of 6 total)