Viewing 15 posts - 481 through 495 (of 566 total)
Have you considered log shipping or database mirroring? Check out BOL/TechNet for more information.
Tommy
Follow @sqlscribeOctober 17, 2007 at 7:54 am
What build are you at? i.e.
SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')
Are you able to reproduce outside of management studio?
i.e.
USE [master]
GO
ALTER DATABASE [AdventureWorks] MODIFY FILE ( NAME = N'AdventureWorks_Data', FILEGROWTH...
Tommy
Follow @sqlscribeOctober 16, 2007 at 2:19 pm
Sounds like your on x64, if this is the case you might try the x64 install package 🙂
Tommy
Follow @sqlscribeOctober 16, 2007 at 2:13 pm
For clarification, the new disk volumes/resources are online and in the same cluster group as the SQL Server resource, correct? Also, is the SQL Server resource dependent on the new...
Tommy
Follow @sqlscribeOctober 16, 2007 at 2:06 pm
What build are you running i.e. -
SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')
Tommy
Follow @sqlscribeOctober 16, 2007 at 10:22 am
Codeplex now maintains the AdventureWorks sample databases. Are you using the latest rev (for SP2a)? i.e. http://www.codeplex.com/MSFTDBProdSamples/Release/ProjectReleases.aspx?ReleaseId=4004
Tommy
Follow @sqlscribeOctober 16, 2007 at 7:31 am
Try -
declare @cmd varchar(1000), @DatabaseTEMP varchar(1000)
set @DATABASETEMP = 'C:\program files\Microsoft SQL Server\MSSQL.1\MSSQL\Data'
set @cmd = 'osql.exe -E -Q "EXEC sp_attach_db ''EZSalesOrder'', ''' + @DATABASETEMP + '\EZSalesOrder_Data.mdf'', ''' + @DATABASETEMP +...
Tommy
Follow @sqlscribeOctober 15, 2007 at 3:27 pm
To drop the catalog (do this first) -
DROP FULLTEXT CATALOG catalog_name
Then try the steps above again.
To determine SP level -
SELECT SERVERPROPERTY('productversion'),
SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')
Should be...
Tommy
Follow @sqlscribeOctober 12, 2007 at 12:48 pm
Have you updated statistics with a fullscan (i.e. index and column stats)?
Tommy
Follow @sqlscribeOctober 12, 2007 at 12:30 pm
Haven't seen that one. Are you running SP2? SMO issues within management studio can typically be alleviated by shutting down managment studio and reopening it. You can drop the...
Tommy
Follow @sqlscribeOctober 12, 2007 at 12:00 pm
You should just be able to drop the old one and create a new one; good step-by-step article w/ illustrations.
http://www.userscape.com/helpdesk/index.php?pg=kb.page&id=142
Tommy
Follow @sqlscribeOctober 12, 2007 at 10:49 am
Correct however something to keep in mind. The example above will use a SHRINKFILE to take the log down to 1MB or so which on an OLTP system wouldn't be...
Tommy
Follow @sqlscribeOctober 12, 2007 at 10:36 am
My apologies - thought this was a 2000 post 🙂
Much easier in 2005 - see this article -
http://msdn2.microsoft.com/en-us/library/ms142511.aspx
Tommy
Follow @sqlscribeOctober 12, 2007 at 10:27 am
Corey Bunch wrote a good article on this -
http://www.sqlservercentral.com/articles/Administration/introtodatabasemailinsql2005/2197/
Tommy
Follow @sqlscribeOctober 12, 2007 at 10:22 am
This might help -
Troubleshooting Server and Database Connection Problems
http://technet.microsoft.com/en-us/library/ms156468.aspx
Tommy
Follow @sqlscribeOctober 12, 2007 at 9:00 am
Viewing 15 posts - 481 through 495 (of 566 total)