Viewing 15 posts - 16 through 30 (of 361 total)
I think this might be what you are looking for:
http://www.red-gate.com/products/sql-development/sql-dependency-tracker/%5B/url%5D
Craig Outcalt
July 15, 2011 at 3:22 pm
Also add onto that, if you want to use, or are using alerts you need agent running.
I agree with G, too... if you're running any agent jobs, you need...
Craig Outcalt
July 15, 2011 at 3:20 pm
SQL Server and SSRS won't track that in the database at all.
Craig Outcalt
July 15, 2011 at 3:03 pm
Gianluca Sartori (7/14/2011)
SQLBOT (7/13/2011)
I demand a refund!On what?
The registration fee for SQLServerCentral? OK, done. 😀
The points for the question? You got it by posting your refund request. 😎
I see...
Craig Outcalt
July 15, 2011 at 2:54 pm
The error means that you restored one of your filegroups farther forward in time than you did the other.
You'll have to restore them to the same point in time then...
Craig Outcalt
July 14, 2011 at 11:39 am
I should have also said, you may need to synch the login sids and add logins on the new server to allow access.
after you add logins, use the database and...
Craig Outcalt
July 14, 2011 at 7:01 am
you forgot one last step
RESTORE database UMyDB with recovery;
Craig Outcalt
July 14, 2011 at 6:58 am
This information is stored in the system views.
select * from sys.service_queues
here's a link to the famous poster:
http://www.microsoft.com/download/en/details.aspx?id=9301
Craig Outcalt
July 14, 2011 at 6:55 am
Yes, but that is the claim of the first poster's quote... that it is not a windows clustering problem but a problem in SQL Server.
from here: http://msdn.microsoft.com/en-us/library/ms189910.aspx
"
SQL Server supports mount...
Craig Outcalt
July 13, 2011 at 3:12 pm
The correct answer is that it listens on all IP addresses on UDP 1434.
IP_ANY refers only listening on any IP address that is bound to the host including all cluster...
Craig Outcalt
July 13, 2011 at 2:30 pm
We were recently told by MS that for Windows 2008 R2 clustering that the drive letter is required for SQL Server.
In SQL 2005 we used Veritas clustering which...
Craig Outcalt
July 13, 2011 at 2:24 pm
Take a log backup, then do the shrinkfile.
Use the truncateonly option in shrinkfile to release all the space after the log truncation point.
Craig Outcalt
July 13, 2011 at 2:03 pm
seth delconte (7/13/2011)
SQLBOT (7/13/2011)
You also don't need to set the recovery model to simple for using dbcc shrinkfile.
In your...
Craig Outcalt
July 13, 2011 at 1:35 pm
not quite sure what you're getting at, but here's my attempt.
create role role1 authorization dbo
create role role2 authorization dbo
exec sp_addrolemember 'db_datareader','role1';
exec sp_addrolemember 'db_datareader', 'role2';
exec sp_addrolemember 'db_datawriter','role2';
now you just need to...
Craig Outcalt
July 13, 2011 at 1:32 pm
If you can insert records in the order of the clustered index, you won't have as much fragmentation because the inserts are appended onto the end of the index instead...
Craig Outcalt
July 13, 2011 at 1:27 pm
Viewing 15 posts - 16 through 30 (of 361 total)