Viewing 15 posts - 271 through 285 (of 314 total)
One quick question. Is "upgrating SQL7 to SQL2K on NT4.0" any different than "upgrating SQL7 to SQL2K on WIN2K" ??
What are the impacts, if they are different? Please do let...
April 3, 2003 at 7:33 am
If you use DBArtisan, You can do this very well with Migrate option.
April 3, 2003 at 7:07 am
DTS would surely let you copy the database.
You CANNOT use "Transfer Database Task".
But you can use "Copy SQL Server Objects Task". You can either append the data or...
April 3, 2003 at 7:06 am
Nice to know this way Jeremy.
I has similar problem, and been using DBArtisan table dependencies page for this.
April 3, 2003 at 6:38 am
John,
I apologise for the dumb question... But what does TSM, ARC means??
April 3, 2003 at 6:24 am
You could also check this article by Andy:
http://www.sqlservercentral.com/columnists/sjones/whoownsthatdatabase.asp
April 2, 2003 at 10:12 pm
try like this...
exec xp_cmdshell'dir D:\"Program Files"\ > d:\d_200304021.txt'
April 2, 2003 at 1:03 pm
DUMP DATABASE OLDDBNAME TO DISK='D:\DBA\DBDUMPS\OLDDBNAME_DBDUMP_20030402.DMP'
GO
RESTORE DATABASE NEWDBNAME FROM DISK='D:\DBA\DBDUMPS\OLDDBNAME_DBDUMP_20030402.DMP' WITH MOVE 'OLDDBNAME' TO 'c:\test\NEWDBNAME.mdf',
MOVE 'OLDDBNAME_log' TO 'c:\test\NEWDBNAME.ldf'
GO
Hope this Helps!!!
Regards,
Murali.
April 2, 2003 at 8:07 am
Giving a thought to that aspect, I think we can get reduce the pages/sec by reducing the fill factor.
Any Thoughts!!!!
April 1, 2003 at 3:56 pm
Please check if "SQL Server Agent --> Properties (Connection Tab) has "Use Windows Authentication" option checked.
Hope this Helps!!!
April 1, 2003 at 1:51 pm
Yes. I agree with racosta that we have to concentrate on INSERTS only. But I think we should lower it to minimise the work on the SQL Server on page...
April 1, 2003 at 1:23 pm
You can check all the support dates on the following page. I have recently received this link from Microsoft Tech Support for the same question.
http://support.microsoft.com/default.aspx?id=fh;en-us;lifeprods%5B/url%5D
Edited by -...
April 1, 2003 at 1:11 pm
Viewing 15 posts - 271 through 285 (of 314 total)