Viewing 14 posts - 61 through 74 (of 74 total)
Not exactly getting your need, you want to say there is an issue with the security or you are facing issues with migration of data to sql server.
Anyways, if it...
February 10, 2009 at 2:02 am
The best method would be to write a Maintenanceplan for doing all this.
February 10, 2009 at 12:43 am
Hello,
Check if the DTC Services is started, that can be a potential Issue.
Regards,
February 10, 2009 at 12:40 am
You can get the above details by running the below
USE master
Go
EXEC sp_configure 'show advanced options', 1
RECONFIGURE
Go
EXEC sp_configure 'max server memory (MB)'
GO
February 9, 2009 at 9:47 am
hi ashok,
I feel firstly you have to run before you run dan's script.
EXEC sp_configure 'show advanced option', '1';
RECONFIGURE;
EXEC sp_configure;
Hope this helps.
February 9, 2009 at 5:33 am
hello,
you can get the required information from two tables one from sysfiles and the other from dbo.backupmediafamily in msdb.
February 9, 2009 at 5:12 am
hello, did you see sp_helpfile?
February 9, 2009 at 4:15 am
Brother, In Simple recovery model the logs are not saved or in other words truncated when ever there is a commit. It is not desirable to do this until unless...
February 9, 2009 at 3:50 am
A good method for deleting duplicates is using CTE.
it is nicely explained in the msdn site. http://msdn.microsoft.com/en-us/library/ms190766(SQL.90).aspx
Hope the above helps.
Sriram
February 9, 2009 at 3:39 am
Just wanted to know how you are running the query, is it through a linked server or from ssis.
transport level errors many a times get resolved when the query...
February 9, 2009 at 3:30 am
not exactly as we were able to integrate it into ssrs w/o .net. anyways hope http://support.dundas.com/Newsletter/09-06/newsletter.htm page gives you more details
February 9, 2009 at 3:16 am
stop all the activity on the db, if needed kill threads.
change the recovery model to simple and then shrink it.
Worst case even then if it is not resolved, dettacch the...
February 9, 2009 at 2:58 am
firstly, try to check whats the percentage of the log file that is in use by
DBCC SQLPERF(LOGSPACE)
or do like below for your database in non peek hours...
USE AdventureWorks;
GO
-- Truncate the...
February 9, 2009 at 2:44 am
I think sysfiles should help you out. select * from sysfiles
February 9, 2009 at 2:33 am
Viewing 14 posts - 61 through 74 (of 74 total)