Viewing 15 posts - 37,261 through 37,275 (of 39,461 total)
Deleted and recreated profile, both with Windows Messaging and Outlook.
Rebooted.
Logs definitely show it stopping and startnig the day of the Exchange upgrade (before the upgrade). They also show it failing...
June 26, 2002 at 4:02 pm
are you backing up the database?
Can you give the schedule?
Have you tried dbcc shrinkfile? I know that isn't the best solution, but you could easily schedule this if you have...
June 26, 2002 at 12:41 pm
You can also compare the inserted and deleted tables
if exists( select a.cola from inserted a inner join deleted b on a.pk=b.pk and a.cola <> b.cola)
-- run audit...
June 26, 2002 at 12:37 pm
June 26, 2002 at 10:08 am
Better off using DBCC, it's supported. A service pack (unlikely) or server upgrade (likely) will break what you build.
Steve Jones
June 26, 2002 at 10:06 am
I agree with Andy, though if you can get another RAID 1 set, I'd separate logs out.
RAID 1 - OS, SQL, tempdb, etc.
RAID 5 - Data mdf/ndf
RAID 1 - SQL...
June 26, 2002 at 10:01 am
June 26, 2002 at 9:56 am
June 26, 2002 at 9:54 am
June 26, 2002 at 9:46 am
Why not just build the table? It wouldn't be that hard to read information_schema.columns for the table and create the new table based on this. Of course, permissions are an...
June 26, 2002 at 9:40 am
No way to do this natively. You could do some kind of funky thing that secures access to the MMC plugin, like maybe encrypting it with a password, but not...
June 26, 2002 at 9:38 am
You would need some type of third party tool or run Profiler. I do not believe that you can set an alert for this.
Of course, you should have VERY few...
June 26, 2002 at 9:35 am
Are you backing up the database? What recovery model are you set to (database/properties)?
Normally a database backup truncates the log, allowing space to be reused.
Steve Jones
June 26, 2002 at 9:24 am
Viewing 15 posts - 37,261 through 37,275 (of 39,461 total)