Viewing 15 posts - 1,951 through 1,965 (of 2,897 total)
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
Rajesh kasturi (2/24/2009)
By migrating the system databases you can't get the DTS packages in 2005, because 2005 you have SSIS.
Here you have to redesign complex DTS packages like...
February 24, 2009 at 10:25 pm
GilaMonster (2/24/2009)
jakemike1 (2/23/2009)
Thanks for all the info guys, and as I'm rather new to SQL I have taken your suggestion Ten Centuries and created a script using the GUI.
There's no...
February 24, 2009 at 12:28 pm
Greg Charles (2/18/2009)
February 24, 2009 at 11:52 am
Viewing 15 posts - 1,951 through 1,965 (of 2,897 total)