Viewing 15 posts - 1,951 through 1,965 (of 2,900 total)
One problem I had with BackupExec is the limited functionality when doing restores. For instance, I had a large production database, with several data files. For example Data1.mdf on the...
March 11, 2009 at 8:36 pm
I use this to show me when the last Full, Diff & Log backups were (or weren't):
SELECT B.name as Database_Name,
ISNULL(STR(ABS(DATEDIFF(day, GetDate(),MAX(backup_finish_date)))), 'NEVER') as DaysSinceLastBackup,
ISNULL(Convert(char(19), MAX(backup_finish_date), 100), 'NEVER') as...
March 11, 2009 at 8:17 pm
I searched the Googles and found this:
http://sqlforums.windowsitpro.com/web/forum/messageview.aspx?catid=60&threadid=42175&enterthread=y
March 11, 2009 at 6:54 pm
noeld (3/11/2009)
Nothing Is Impossible
Some things are.
Such as recovering databases when there are no backups.
March 11, 2009 at 6:48 pm
You don't need any special tools if you have good backup procedures in place. If you have a Full backup, and if your database is in FULL RECOVERY mode, and...
March 11, 2009 at 1:33 pm
I think that did it, thanks. I had put a double quote in their twice, but should have put just one.
March 10, 2009 at 9:00 am
The Administrator needs to add a Windows account (preferable) or SQL account and give it permissions, as Florian mentioned.
March 9, 2009 at 10:01 am
Make a DNS entry to route all traffic from your old server to your new server. Then if you miss changing anything, it will still work. You can fix connections...
March 4, 2009 at 11:00 am
maybe Upgrade Advisor tool would have caught that ? Not sure
March 4, 2009 at 9:25 am
There's nothing in the BOL index for dm_*. Any idea why not ? The MSDN website has info though:
http://msdn.microsoft.com/en-us/library/ms188754(SQL.90).aspx
March 2, 2009 at 9:34 pm
Adiga (3/1/2009)
SELECT A.NAME,B.TOTAL_ELAPSED_TIME/60000 AS [Running Time],
B.ESTIMATED_COMPLETION_TIME/60000 AS [Remaining],
B.PERCENT_COMPLETE as [%],(SELECT TEXT FROM sys.dm_exec_sql_text(B.SQL_HANDLE))AS COMMAND FROM
MASTER..SYSDATABASES A, sys.dm_exec_requests B
WHERE A.DBID=B.DATABASE_ID AND B.COMMAND LIKE '%RESTORE%'...
March 2, 2009 at 5:24 pm
Ninja's_RGR'us (3/2/2009)
and then ...look up books online in books online...Sorry Gail, I know I'm not supposed to read your mind :D.
I wish I could .... I'd know a lot more...
March 2, 2009 at 12:30 pm
GilaMonster (2/26/2009)
The other possibility is that it's not a SQL backup at all. See if you can find out where it came from.
Maybe someone backed up with a third party...
February 27, 2009 at 12:23 pm
I did an "in place" upgrade in place at my previous job and it was very easy. Now I'm doing "side-by_side" because we're moving to new hardware at the same...
February 25, 2009 at 3:59 pm
You can script the job in 2000, then paste & run the script in 2005.
February 24, 2009 at 10:30 pm
Viewing 15 posts - 1,951 through 1,965 (of 2,900 total)