Viewing 15 posts - 31 through 45 (of 67 total)
I assume you have it on another filegroup other than the primary.
This is quite a pain, but you can create a new filegroup, add one data file to it....
March 11, 2008 at 6:43 pm
Check and review the dts packages, jobs. There might be a tsql program that went out of hand. If this happens on particular hours of the day, fire up your...
March 11, 2008 at 5:35 pm
select name, databasepropertyex(name, 'recovery') from master..sysdatabases
😀
March 11, 2008 at 3:16 pm
Time to put one in place now. Maintenance plan comes in handy. Just backup "all databases", or "all system" and "all user" databases. In most cases, you also don't need...
March 11, 2008 at 1:11 pm
There's no option to skip writing to msdb backuphistory in the backup database command, so I'm afraid you can't get away with it. So, you'll have to go with what...
March 9, 2008 at 9:32 am
Yes, you have to exclude .mdf and .ldf files in TSM. You can't back them up while the database is online. What you need to do is schedule a disk...
March 9, 2008 at 8:36 am
I wonder if the order these tasks show up in maintenance plan wizard has something to do with it (optimization>integrity check>backups). You do not want to keep a backup with...
March 8, 2008 at 7:43 pm
Nothing in event viewer as well?
March 8, 2008 at 7:06 pm
Use import/export wizard in sql server enterprise manager, use text file (csv) as your destination format, then use a query to specify and filter the data you would like transferred.
March 8, 2008 at 7:02 pm
yes, it is detach/attach that is your quickest approach..sql7 has it.
March 8, 2008 at 6:53 pm
Tried adding trace flag 3608?
February 16, 2008 at 3:38 pm
Was the user you used to connect to sql server in your connection string in vb has proper permissions? Did you use trusted connection or integrated security?
February 16, 2008 at 1:16 pm
The easiest way would be to set up an sql server event alert. There's an alert definition for db log file being full.
February 14, 2008 at 2:50 pm
create your temporary table..
INSERT #yourtemptable exec('restore filelistonly from disk=''....xl.bak''')
February 14, 2008 at 2:42 pm
You can also check the db datecreated if it's recent, you'll have an idea when the database just got restored.
February 14, 2008 at 10:34 am
Viewing 15 posts - 31 through 45 (of 67 total)