Viewing 11 posts - 16 through 26 (of 26 total)
Lowell,
Thanks for your input.
i have it scheduled on my dev machine to run daily, since i never turn it off; i may be biased but i think it makes a...
July 24, 2006 at 9:01 pm
Looks like shrinking, backup, restore is only way here.
: (. Like to know any precaution/catch to shrink a 300GB datafile to under 100GB.
My PROD is a 2-node clustering with a...
March 5, 2006 at 6:56 pm
The logic is more complex than just direct update to another table from inserted and deleted virtual table.
I need to process row-by-row in inserted and deleted. That's why my concern...
December 7, 2005 at 6:48 pm
old hand,
What do you suggest? Will WHILE loop better than cursor?
December 6, 2005 at 6:42 pm
Thanks for your reply. Looks like logic has to be in trigger. : (
I understand that after trigger in SQL 2000 fire on per stmt basis. Thus, I need to write...
December 6, 2005 at 6:32 pm
If I do need to remove BOL, how do I remove BOL after SQL Server installation?
I tried loaded back the installation CD and choose "Upgrade, remove and add components...." from...
November 29, 2005 at 6:56 pm
Thanks, Enthusiast
I am thinking is there a more generic way of achieving this rather than hardcoding the table name in filter. Reason because if new tables are created the filter...
October 4, 2005 at 7:50 pm
PROD & DEV is on diff site and on diff LAN zone. I can't use DTS. The data is in tens of GB in size and 300s of tables. If i use...
August 30, 2005 at 8:20 pm
Yes, it's DB restore from DEV to PROD.
use master
go
RESTORE DATABASE [DB1]
FROM DISK = 'D:\DBA\MSSQL\BACKUP\DISK[DB1]_AFT.BAK'
WITH Recovery,
MOVE '[DB1]_Data' TO 'D:\MSSQL\DATA\[DB1]_Data.MDF',
MOVE '[DB1]_Log' TO 'D:\MSSQL\data\[DB1]_Log.LDF',
REPLACE
go
Because DEV only has only 1...
August 29, 2005 at 7:44 pm
Michael,
Thanks for the advice.
1. That's exactly my concern. The domain user is merely a normal user account in the SQL box with minimum rights. Security people refused to grant higher rights...
August 18, 2005 at 7:55 pm
Viewing 11 posts - 16 through 26 (of 26 total)