Viewing 15 posts - 5,806 through 5,820 (of 7,502 total)
...Does it pull them all over when you expand the file list?...
AFAIK it doesn't.
Only when you open them, it will pull them over .... My guess is this was...
April 24, 2007 at 6:37 am
By default, we add startuptraces for deadlockdetection at all our servers.
you can use this script to add the startup parameters.
If you also want to start the traces now, without restarting...
April 24, 2007 at 6:12 am
HTH ![]()
... BTW, developing using Read Uncommitted as default sounds pretty bold! Not for the faint-hearted! ...
Indeed, but the same goes for coding a...
April 24, 2007 at 6:05 am
When you are experiencing the issue, run the query mentioned at the hyperlink. It will show you who is blocking who, this may get you on track.
You can run profiler...
April 24, 2007 at 5:45 am
SQL Profiler :
start \ programs \ microsoft sqlserver 2005 \ performance tools \ sql profiler
I'd start with the default presented trace.
Keep in mind this may have impact on your...
April 24, 2007 at 5:38 am
What's the actual size (mb) of the serverlogs ?
I guess it's pulling it over the network, hence the "not responding"
April 24, 2007 at 5:34 am
Just a thought at this time .... ![]()
Like with all hints, try to avoid them ! ![]()
And if you...
April 24, 2007 at 5:27 am
- run sql-profiler to figure out what's going on
- find out what's blocking the server :
http://www.microsoft.com/technet/scriptcenter/scripts/sql/sql2005/trans/default.mspx?mfr=true
April 24, 2007 at 5:15 am
did you try ...
CREATE PROCEDURE testUnique
AS
declare @strSQLExec nvarchar (1000)
set @strSQLExec = N'select * from NonExisting_object '
print @strSQLExec
DECLARE @myrc AS INTEGER
SET @myrc = 0
EXECUTE @myrc =sp_executesql @strSQLExec
IF @myrc <>...
April 24, 2007 at 4:43 am
how about books online ?
btw to avoid some hassel, some use smtpmail
Have a look at Gert's site : SQLDev.Net
April 23, 2007 at 1:37 pm
maybe this can get you back up and running.
if it concerns only model, pubs and northwind.
(remember to keep the old mdf-ldf files)
Just copy another model-db (mdf + ldf) from another server...
April 23, 2007 at 10:31 am
Be very carefull !!![]()
![]()
![]()
DBCC TRACEON (1807) : Allows you to...
April 20, 2007 at 6:07 am
..Now I have to go find out why all our upgraded master databases are set to a compatbility level of 80...
If you've upgraded, the compatibility level has not been changed....
April 19, 2007 at 11:45 pm
maybe this can help you out ....
create table #PhoneCalls (CallId int not null identity(1,1) primary key, CallTime datetime not null, CallEnd Datetime not null default ('9999-12-31 00:00:00.000'), CallDuration int not...
April 19, 2007 at 5:33 am
as you will have noticed, SSIS is not cluster aware. What I mean is SSIS is not member of a cluster group, unless you install it yourself.
This means, you'll have...
April 18, 2007 at 1:34 pm
Viewing 15 posts - 5,806 through 5,820 (of 7,502 total)