Viewing 15 posts - 106 through 120 (of 150 total)
If the process includes a linked server, and/or some other ODBC connectivity, you may not be able to remove it without restarting sql. restarting MSDTC may resolve it but not...
February 17, 2006 at 11:19 am
NoLock is not assumed.
You can add "set transaction isolation level read uncommitted" and all tables opened in that connection will be opened with nolock. Otherwise, use [with] (nolock) after each...
February 16, 2006 at 8:10 am
My current advice is also to not use the 3GB switch. Here is a recent, yesterday, comment from an engineer at Microsoft.
Unless you have the benchmarks, and dedication...
February 16, 2006 at 7:55 am
Its not true migration...but you can move the DTS packages, and then execute them using Execute DTS 2000 Package task in SSIS. This could be a temporary way to get...
February 14, 2006 at 3:01 pm
Individual files were an option in 2000. Another lost featue! Also, you can not scrip drop and add at the same time, or preview the TSQL.
You will be upgraded. Resistance is...
February 14, 2006 at 8:44 am
Here too we use active/passive clustering for HA and log shipping (custom built) for DR
Terry
February 9, 2006 at 9:51 am
Sometimes when a db is marked as suspect, and all other attempts to get it back fail, the last resort is to bring it up in emergency and select out...
February 8, 2006 at 2:58 pm
From a prior post...
Let's get something straight from the get-go. The First Amendment is sacrosanct. Freedom of speech, freedom of the press, freedom of thought, the whole ball of wax...
January 31, 2006 at 9:11 am
This may be a stupid comment, but you must be sure you are moving it to a clustered resource, not a local drive.
Terry.
January 27, 2006 at 8:34 am
Don't the 100+ ppl who go this wrong have access to Query Analyzer? A cut/paste/execution lasting 5 seconds and you have the answer.
No offense meant!
Terry
January 27, 2006 at 8:23 am
There are plenty of network monitoring tools you could use...
Here is TSQL I use to see what node is running. The first line of 'net statistics server' returns the...
January 26, 2006 at 1:52 pm
Sam,
Often this is a way to let your developers, or you (shrug) put together a quick ACCESS application while the data remains in SQL, with all the backups etc concerns...
January 25, 2006 at 7:08 am
Agree with Adam. Backup locally, zip, and xcopy all from TSQL (if you have xp_cmdshell enabled).
If you don't have room on the local server, you can backup to UNC path....
January 20, 2006 at 12:02 pm
ONe more advantage to TVs over temp tables is the optmizers ability to use the TV in determining an execution plan, where often it can not do so with a temp table....
January 20, 2006 at 11:46 am
TVs are not 100% memory objects...
http://support.microsoft.com/?kbid=305977
Q4: Are table variables memory-only structures that are assured better performance as compared to temporary or permanent tables, because they are maintained in a...
January 20, 2006 at 11:42 am
Viewing 15 posts - 106 through 120 (of 150 total)