Viewing 15 posts - 2,266 through 2,280 (of 2,897 total)
SQLWannabe (6/3/2008)
Thanks Matt. Of course 10 minutes after I posted this, I figured out the multiple IF statement solution. Sometimes I feel like such a dork.
Welcome to the club !
June 3, 2008 at 3:09 pm
You can buy a product like Idera's Compliance Manager. It can be set up to send alerts for all different types of operations.
June 3, 2008 at 2:48 pm
I do the trigger part like this. Not sure about the email.
CREATE trigger [dbo].[update_trigger] on [dbo].[MyTable] for UPDATE
as
if
UPDATE
(Field1) or
update
(Field2)
begin
insert into...
June 2, 2008 at 9:11 pm
cwedgwood50, What functionality are you looking for that the built in SQL script generator function doesn't do ??
June 1, 2008 at 6:37 pm
Could she restore Master to a test box, and extract just the 1 row for that login ?
May 27, 2008 at 2:41 pm
Even more space would be better. There are always situations that come up during upgrades, year end processing, big data fixes etc that will require extra backups to be taken...
May 16, 2008 at 1:57 pm
ALZDBA (3/27/2008)
It has a default do delete all backup info as well.
AFAIK, you still need to delete the backup files manualy.
So have...
March 27, 2008 at 8:34 am
Todd Engen (3/26/2008)
Did you query sys.traces? If it's running, the location will be shown there as well.
Thanks .... that fixed it. Although I'm spoiled with Compliance Manager on...
March 26, 2008 at 12:43 pm
Hmmmm.........I only have 1 log.trc file in an unused folder, last modified on 8/2007
March 26, 2008 at 12:28 pm
If the database AND the backups are deleted, it doesn't sound like an accident. Are you sure it was backed up at all ? If you've only been...
March 26, 2008 at 8:42 am
After reinstalling SQL, the system databases will have the new collation, but msdb will be empty (no jobs or DTS). If msdb is restored from a backup, then it will...
March 19, 2008 at 5:46 pm
And the 4 "foreach" links at the bottom of the page are dead.
March 19, 2008 at 12:29 pm
Jonnie Pettersson (3/19/2008)
I think you are missing the point here...or am I 🙂
If your database and temDB collation differ you have to either rebuild the masterDB or create...
March 19, 2008 at 7:32 am
If you just want to make the code work, then you can use the COLLATE function to get them in sync like so:
select * from TableA A
join TableB B on...
March 17, 2008 at 2:04 pm
GermanDBA (12/18/2007)
Sorry, I think you misunderstood.... sarcasm is not an easy thing to display when writing on a message board.
I only meant that I made the mistake of not...
February 5, 2008 at 9:02 am
Viewing 15 posts - 2,266 through 2,280 (of 2,897 total)