Viewing 15 posts - 32,431 through 32,445 (of 39,740 total)
You set it by connection, not by user ID. The connection from the client can send a timeout message to a server after xx seconds.
March 19, 2007 at 8:27 am
SQL Server reuses space if data is removed.
A couple things to check. First are you sure the data file is growing and not the log file? Some people use the...
March 19, 2007 at 8:18 am
sp_configure 'allow_updates', 1
go
reconfigure with override
go
update sysusers
set name = 'MyNewRole'
where name = 'MyRole'
go
sp_configure 'allow_updates', 0
go
reconfigure with override
March 19, 2007 at 8:14 am
Shouldn't the first one be "server"
Try here: http://www.connectionstrings.com/?carrier=sqlserver2005
March 18, 2007 at 8:26 am
We're digging in. It has to be something with the forum software. All the other dates in ASP and on other sites are working in US format. Servers are set...
March 17, 2007 at 7:50 pm
It also depends on your OS. Some can detect cores, some detect the threading (so hyperthreading on appears as 2).
Windows XP can detect multiple logical processors, but not physical ones....
March 16, 2007 at 8:34 am
How much data are we talking about? I'd be surprised if you get much optimization this way.
There isn't a way inside SQL Server to do this easily. Any...
March 16, 2007 at 7:48 am
Is Autoclose turned on?
March 15, 2007 at 2:08 pm
There's no good way to determine when stored procedures have been used. Profiler works or if you can "touch" the stored procedures, you can add a line of code to...
March 15, 2007 at 1:58 pm
Call PSS. Consistency errors are not worth screwing with.
March 15, 2007 at 10:24 am
I think you'll have to just make guesses based on sizes and then queries / sec for them. The best thing you can do, however, is setup internal DNS entries...
March 15, 2007 at 10:24 am
The user your application uses may not have rights to the new schema. Might check the security. Trace some executions and see if it's the problem.
March 14, 2007 at 9:49 am
Anything in the security or system logs? Service startups usually appear in the system log. The Agent start should also be logged in the SQL errorlog.
March 14, 2007 at 9:47 am
Viewing 15 posts - 32,431 through 32,445 (of 39,740 total)