Viewing 15 posts - 16 through 30 (of 56 total)
U can use SSIS PACKAGE for fetching data in csv format and save it to a location which u want
October 11, 2012 at 8:09 am
For Database what profile name who have made mention that.
EXEC MSDB.DBO.SP_SEND_DBMAIL
@PROFILE_NAME = 'XYZ', ...
October 11, 2012 at 6:11 am
use this in the job step while executing
EXEC MSDB.DBO.SP_SEND_DBMAIL
@PROFILE_NAME = @MPOFILENAME, ...
October 11, 2012 at 1:51 am
Use the following command:
SELECT file_id,name ,size/128.0 - CAST(FILEPROPERTY(name, 'SpaceUsed') AS int)/128.0 AS AvailableSpaceInMB
FROM sys.database_files;
after this command u will find the file id which has free space then run DBCC shrinkfile(file...
October 10, 2012 at 3:18 am
It is possible to run SQL Server 2005 and 2008 instance on Two Node Cluster.
October 9, 2012 at 10:26 pm
What is ur drive size in which your log files are and what is the size of the Database that is being logshipped.
October 9, 2012 at 9:46 pm
TUF file is created when configuring log shipping in Standby mode.All uncommitted transactions are recorded to the TUF file while restoring the log backup into standby database so that users...
October 5, 2012 at 5:13 am
It's the undo file that is needed to keep the secondary server in the read-only state and if you use the norecovery instead, you wouldn't have that file on the...
October 5, 2012 at 5:07 am
run the dbcc checktable with repair and rebuild option and with error msg.
this can done the page repare in database.
this will retrive all the data without data loss. i...
October 3, 2012 at 4:46 am
This can be achived by following command
Restore log test
from disk='I:\Test_logshipping\Test_20120228055827.trn'
with move 'logical name of new file'to 'Physical location on DR where it will be placed',norecovery
October 1, 2012 at 6:34 am
No there is no such error.
Do we need to enable any trace flag for that so that its is visible in the errorlog
October 1, 2012 at 5:26 am
There is nothing in the errorlog prior to running checkdb which can help us.
We are running check db through maintanence plan.
October 1, 2012 at 3:31 am
I am unable to find any thing in the error log because the DBCC CHECK DB did'nt complete before completing it gave the above error...
October 1, 2012 at 2:06 am
It got resolved by changing VCHMESSAGE VARCHAR(800)
to VCHMESSAGE VARCHAR(max)
September 26, 2012 at 1:28 am
We have alert set virtually for everything but that day it didn't run due to sql server agent issue.
The error we got on sql server agent log was :-
SQLServer Error:...
September 11, 2012 at 10:47 pm
Viewing 15 posts - 16 through 30 (of 56 total)