Viewing 15 posts - 5,806 through 5,820 (of 7,505 total)
This happens when using a sql-user. Not with Windows authentication.
April 25, 2007 at 2:39 am
at "freeze" time ...
- are there backups running ?
- are rebuilds going on ?
- did you use sqlprofiler to capture the load
- how about deadlock situations (are startupparameters -T1204 and...
April 25, 2007 at 2:36 am
Open up Sql server configuration mananget.
Connect to your sqlserver-server.
rightclick your wanted sqlserver service, go to the advanced tab and check the startup propetries. The sqlerrorlogfile is specified with the -e...
April 25, 2007 at 2:27 am
...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
Viewing 15 posts - 5,806 through 5,820 (of 7,505 total)