Viewing 15 posts - 22,906 through 22,920 (of 39,824 total)
I'm with Gus. Go test them out, take a book, spend 15 minutes (at least) in each one you like. Maybe bring a laptop, type a little, get a feel...
July 29, 2009 at 8:45 am
It should install. It runs on the Microsoft help platform, but there might be components from the client tools it is expecting. Do you have the 2000 client tools installed?
July 29, 2009 at 8:36 am
Jack has it pretty close. Developers also focus or worry about things that may or may not be what is needed by the client. That's natural, we have a different...
July 29, 2009 at 8:34 am
It's a simple OS error reported to SQL. Either the account has a quota limitation or there truly is not enough space. If you manually run the backup yourself, does...
July 29, 2009 at 8:28 am
I agree. It doesn't appear that you understand how SQL Server is optimized.
coding for:
ID Make Model Color
--- ------ -------...
July 29, 2009 at 8:23 am
I think this is great behavior. Allows you to easily log things that might happen in a transaction that needs to roll back. If you used a permanent table, your...
July 29, 2009 at 8:18 am
I'd actually run a maintenance job to clean these up every night, or flag them for someone to look at. Rather than do this at insert time, which could cause...
July 28, 2009 at 2:06 pm
Roy,
If I can get Red Gate to send me, I might come out there for a talk!
July 28, 2009 at 1:55 pm
From BOL http://msdn.microsoft.com/en-us/library/ms151797.aspx
--Which objects in the database are published?
select name as published_object, schema_id, is_published as is_tran_published, is_merge_published, is_schema_published
from sys.tables where is_published = 1 or is_merge_published = 1 or is_schema_published =...
July 28, 2009 at 10:05 am
I'd agree with Jamie's advice. If you are getting multiple backups, something else is happening.
Are both backups at the same time? I might run Profiler at the time of the...
July 28, 2009 at 9:29 am
Logged this as a bug. Hopefully it will get handled soon.
July 28, 2009 at 9:28 am
the other thing you can do is create a stored procedure to run this proc with some likely parameters. Then mark that as a startup procedure and have it run...
July 28, 2009 at 9:15 am
Viewing 15 posts - 22,906 through 22,920 (of 39,824 total)