Viewing 15 posts - 121 through 135 (of 189 total)
Here's how you can prove tables variables use tempdb:
1. Open a connection and run the sample code in this article adding a WAITFOR command:
declare @tbl_Var1 table(f1 int, f2 varchar(10))
--Wait 10...
November 21, 2006 at 5:27 am
I don't think you'll find one tool that will do all of things well. You may find one tool that does a mediocre job of all of your objectives. I've...
November 17, 2006 at 5:34 am
Use regular expressions (vim, grep, sed, awk, Perl, etc.): Here's a sed one-liner:
sed -e "s/GO/\nGO/g" myfile.sql
November 6, 2006 at 6:15 am
Unfortunatley unlike Oracle, SQL Server does not have native features for query governor on a login basis. We could however setup a job to query sysprocesses and kill anything process...
October 30, 2006 at 6:25 pm
You can use setspn command line utility to list, create or delete spn's:
October 23, 2006 at 8:56 pm
The troubleshooting described in this thread is related to changing a SQL service account and SSPI errors. For client SSPI errors unrelated to the service account go through the troubleshooting...
September 26, 2006 at 4:51 pm
Just to make sure we're both on the same page, you're trying to change the Windows SQL Server service account and we're receiving an SSPI error?
September 26, 2006 at 2:14 pm
A domain admin or local administrator context will automatically register the SPN. If the SQL is started with an account with less rights, then the SPN will need to...
September 25, 2006 at 5:25 pm
We had similar issue on SQL Server 2005 x64 and opened a call with Microsoft. We installed the x64 version of the Oracle driver from Oracle and it worked.
September 7, 2006 at 4:33 pm
I attended an MS presentation where a feature was discussed in SQL Server 2005 for NUMA processors (AMD, Itaninum, also I think IBM or Unisys have an Intel based NUMA...
August 30, 2006 at 5:45 am
This is a bit of a hack, however I've used it from SQL Server 7.0 through SQL Server 2000 including all Service Packs:
1. Modify sysjobs_view by adding two lines to...
August 24, 2006 at 6:09 am
I had s similar problem when changing service accounts in an Windows 2003 AD domain. The problem had to do with an Service Principle Name (spn) being registered under the...
August 24, 2006 at 6:00 am
It sounds like you are running SQL Server 2000 Enterperise Edition with SP4. In SQL Server 2000, Microsoft only created an Itaninum version (IA-64) and not an x64 version (Intel/AMD)....
April 13, 2006 at 5:39 am
Just curious -- MS released a cumulative hotfix for service pack 4 in December:
http://support.microsoft.com/?kbid=904660
Are you running build 2162?
January 25, 2006 at 4:38 am
Some 3rd party monitoring tools set this trace flag such as Veritas Indepth for SQL Server. In the case of Indepth you can configure it to set the flag to...
January 24, 2006 at 4:57 am
Viewing 15 posts - 121 through 135 (of 189 total)