Viewing 15 posts - 976 through 990 (of 1,655 total)
Hmmmm,
I must admit you're right.
The information from sys.dm_db_index_operational_stats seems pretty useless and because it's a dynamic view, interpreting the results after a restart is even more of a...
January 2, 2008 at 5:14 am
sys.dm_db_index_operational_stats contains a column "leaf_allocation_count "
which according to BOL means "Cumulative count of leaf-level page allocations in the index or heap. For an index, a page allocation corresponds to a...
January 2, 2008 at 3:47 am
When using mirroring your servers will always have different names. With synchronous or Safe mirroring you can configure auto-failover at the client by defining an alternative server in the connection...
January 2, 2008 at 2:59 am
Neil,
when you run SELECT @@Servername(), does it return your servers name or NULL? My guess would be NULL.
Sometimes it happens that the entry for the local server in sysservers...
January 2, 2008 at 2:45 am
GilaMonster (12/31/2007)
Modifying the system tables is not a good idea. It is a very bad practice that is recommended against by most experts. It's...
December 31, 2007 at 7:41 am
Sorry I can't open Ed's procedure at the moment but this is a script I use:
SELECT Rolename,
[Objectname],
...
December 31, 2007 at 4:03 am
As Jeff already wrote there are loads of articles around and with a little help from google you should be able to find something. Anyway here's an article I found...
December 31, 2007 at 1:28 am
SQL Express does not include SQL Agent. Are you sure the agent you see is from the Express instance? Any how the easiest way to schedule regular backups is using...
December 28, 2007 at 7:18 am
Animal Magic (12/21/2007)
December 21, 2007 at 2:39 am
You need to create a new cluster group first with it's own drive letter(s).
After installing the new instance make sure to limit the max memory settings for both instances...
December 20, 2007 at 6:10 am
Noman Salim (12/14/2007)
Karthik (12/14/2007)
Go with the defaults in the wizard till you come to the page to select object types....
December 14, 2007 at 9:54 am
If you have SQL Server, Books online is most likely installed with it.You will fnd it under "Documentation and tutorials".
There's also the online version which you can find here:
December 14, 2007 at 3:02 am
Look in Books On-line under attach and /or backup. You find the code and examples there.
December 14, 2007 at 2:42 am
Yes, you can do this. Two possible ways
Option 1. Create a windows group, add the users to the windows group, create a login for the windows group in sql server,...
December 14, 2007 at 1:48 am
This should do the job:
DECLARE @login nvarchar(128), @isql nvarchar(2000)
DECLARE c1 CURSOR FOR
SELECT name from syslogins where name <>'sa'
OPEN c1
FETCH NEXT FROM c1
INTO @login
WHILE @@FETCH_STATUS <> -1
BEGIN
...
December 14, 2007 at 1:42 am
Viewing 15 posts - 976 through 990 (of 1,655 total)