Viewing 15 posts - 481 through 495 (of 597 total)
I've noticed this before when working in Visual Studio.NET (at least in versions other than 2003) I think it has to do with garbage collection not being run while the...
March 2, 2004 at 8:21 am
There are several good scripts here to help with blocking problems. I've used this one http://www.sqlservercentral.com/scripts/contributions/407.asp
Also Microsoft has a good proc called 'sp_blocker_pss80.' see http://support.microsoft.com/default.aspx?scid=kb;en-us;271509
March 1, 2004 at 2:23 pm
Sounds like an authentication error. Are you accessing SQL Server via Integrated Security? Have you tried the remote app using A SQL Server login? (Just to see if the security...
March 1, 2004 at 1:32 pm
My understanding is that setting any object to Nothing marks that object as eligible for the garbage collector to pick up. This process happens on the Web server and has...
March 1, 2004 at 12:57 pm
I would use the SqlCommand object as oppossed to the the Connection object. This way you could make use of the parameters method. The parameter method ensures you are passing...
March 1, 2004 at 8:01 am
You may want to reconsider using the sa userid for an application. It is potentially dangerous even if your application is immune to sql injection attacks. You risk the user...
February 27, 2004 at 10:32 am
I tried it too. The proc executes but the statement:
INSERT #Reg
EXEC master..xp_regenumvalues N'HKEY_LOCAL_MACHINE',
N'SOFTWARE\Microsoft\MSSQLServer\MSSQLServer\Parameters'
does not work on startup. I changed #reg to a permanent table and removed the drop table statement so I could...
February 27, 2004 at 9:20 am
You're right.. no startup procs. The Config value would be = 1. If you had a test machine you could try it there. Otherwise wait until you can restart the...
February 26, 2004 at 12:58 pm
check if there is any stored procs that execute at startup that may change the password. use sp_configure and look for the parameter scan for startup procs. If this is...
February 26, 2004 at 11:57 am
I'm not sure how helpful this is but I have 3 SQL Servers that have been running with hyperthreading for several months now (using WIN 2K Professional) and I haven't...
February 24, 2004 at 9:02 am
Right click on the server in Enterprise Manager, select properties and click on the Security tab. I suspect it says Authentication Windows only. If you want to use SQL ids...
February 24, 2004 at 8:33 am
The n in front refers to Unicode data. If your data includes characters other than the regular english character set (ancented characters, National Character data types in the SQL-92 character...
February 24, 2004 at 8:27 am
You may want to look at using bcp which can run in fast (not logged) or logged mode. Fast mode is good for large amounts of data not only because...
February 23, 2004 at 1:26 pm
In the code sample I gave you I assumed you would only reindex the primary key index named pk_tablename. In doing this I assume this is the clustered index. If...
February 23, 2004 at 1:17 pm
Viewing 15 posts - 481 through 495 (of 597 total)