Viewing 15 posts - 47,011 through 47,025 (of 49,571 total)
Are you using Snapshot isolation level?
Are you doing online index rebuilds?
April 6, 2008 at 11:55 pm
julia.nicholas (4/4/2008)
April 4, 2008 at 8:12 am
Could you explain more what you want please?
What are you trying to see?
April 4, 2008 at 6:09 am
Just bear in mind that the 'encryption' of views/stored procs is not unbreakable.
Took me under 5 min last time.
April 4, 2008 at 5:26 am
Which statement?
Applying tran logs in a log shipping scenario? Disaster recovery?
April 4, 2008 at 5:14 am
julia.nicholas (4/3/2008)
AndyD (4/2/2008)
For Logins, my advice is to stick with Windows Authentication only. That way, all logins are via domain users/groups - no logins need to be transferred.
True, but you...
April 4, 2008 at 3:32 am
1) It's old syntax (I think it's deprecated) with the same behaviour as Simple recovery mode.
2) Lazy writer writes dirty pages to disk based on memory pressure. Checkpoint runs from...
April 4, 2008 at 3:29 am
Take a backup and restore it as a new DB.
April 4, 2008 at 3:18 am
I assume you want to speed them up. Correct?
Is there blocking?
Is the query written optimally?
Are the indexes useful (ie, is the query using indexes).
Run the query with the execution...
April 4, 2008 at 2:27 am
See if there's blocking which is causieng the query to run slower than usual
Have a look at the query itself, see if it can be optimised.
Run it with exec plan,...
April 4, 2008 at 1:58 am
What's the initial size for TempDB and what size is it reaching?
April 4, 2008 at 1:55 am
32 bit or 64 bit?
Run this, and see what the cache sizes are.
SELECT name, SUM(single_pages_kb + multi_pages_kb)/1024 AS SizeInKB
FROM sys.dm_os_memory_clerks
GROUP BY name
In...
April 4, 2008 at 1:19 am
What is it doing and what should it be doing?
Some schema definitions, sample data and expected output would be useful.
April 4, 2008 at 12:58 am
What are you struggling with?
Does this do what you want?
CREATE TRIGGER trgCopyNewUsers
ON Users -- Table the trigger's on
FOR INSERT -- What operation it triggers on
AS
Insert into Table2 (UID)
SELECT UID
FROM...
April 4, 2008 at 12:46 am
You can use DTSRUNUI to get the command line of the DTS package.
It's a gui app that lets you select the server and package, set the options and parameters...
April 4, 2008 at 12:14 am
Viewing 15 posts - 47,011 through 47,025 (of 49,571 total)