Viewing 15 posts - 1 through 15 (of 23 total)
I've played guitar for about 10 years, loved playing blues, classic rock, classical, shred. I used to concentrate on my chops and improv and learning Steve Vai tunes.
I'm also into...
December 15, 2009 at 7:00 am
Unless you trace for specific events or setup triggers, the only thing that I can think of that may be of use is the sys.dm_db_index_usage_stats system view. This will show...
September 24, 2009 at 8:40 am
Tablediff is also useful for these sorts of things and can even generate scripts to fix differences between tables.
September 23, 2009 at 8:30 am
Do you use Veritas Backup Exec?
September 22, 2009 at 4:22 am
GO only works in Enterprise Manager, the SQL Engine doesn't know what it is.
DECLARE @newline AS NVARCHAR(2);
SET @newline = '\CR'--CHAR(13) + CHAR(10);
DECLARE @sql NVARCHAR(MAX)
SET @sql = '
USE...
August 4, 2009 at 2:12 am
You generally don't want to shrink the log file, if it's growing to 100GB regularly after being shrunk, then you want to make more space available for it. Every time...
July 3, 2009 at 2:50 am
Yes, you don't need to keep telling them what you can't do. You should be emphasising what you can do and when it comes to doing the tasks that you've...
May 7, 2009 at 3:46 am
^Yes, I think you can create a snapshot of the mirror, but only if you've got Enterprise edition.
March 27, 2009 at 10:32 am
Mirroring would only create a secondary database that's "in recovery" mode, so you won't be able to access it. I think you should look into replication.
March 27, 2009 at 10:17 am
It says that you can't connect to the version of SQL Server with your management studio and you need a newer version.
To test if you have connectivity from your workstation,...
March 24, 2009 at 2:50 am
Nope, need to upgrade SSMS in order to be able to connect to SS08.
March 23, 2009 at 5:41 am
A custom shortcut I tend to use quite often:
Go to Tools > Options. Expand Environment > Keyboard.
Set Ctrl+3 to SELECT * FROM
Set Ctrl+4 to SELECT TOP 10 * FROM
Click OK.
Once...
February 25, 2009 at 8:27 am
You could always union the same statement for each database.
SELECT *
FROM DB1.sys.sysobjects
UNION
SELECT *
FROM DB2.sys.sysobjects
February 11, 2009 at 7:43 am
Viewing 15 posts - 1 through 15 (of 23 total)