Viewing 15 posts - 32,506 through 32,520 (of 39,818 total)
check your dateformat so you know which day is which. For example, for me in the US, Sunday is 1.
The previous Friday is simple math. So for today, I subtract...
March 19, 2007 at 9:15 am
I'm not sure I'm understanding. Are you dropping the results from DBCC INPUTBUFFER into another table? And then are you trying to update something else? Maybe you could give more...
March 19, 2007 at 8:55 am
Or this:
drop table MyTable
create table MyTable
( myid int
)
go
insert mytable select 1
insert mytable select 10
insert mytable select 12
insert mytable select 17
insert mytable select 21
select a.MyID
, (b.myid - a.myid - 1) 'blanks'
...
March 19, 2007 at 8:52 am
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
Viewing 15 posts - 32,506 through 32,520 (of 39,818 total)