Viewing 15 posts - 1 through 15 (of 17 total)
No, not verifying on the Veritas.
The scheduled task(script file .bat) is placed on Netbackup client server which does the copy job.
In the same batch file, can we add any...
September 19, 2012 at 2:58 am
As Perry told, it is good to troubleshoot why in first place the LS restore job is not picking up the t-log backups.
There is no need to re-configure LS each...
September 18, 2012 at 5:07 am
declare @var1 int
set @var1=3
select schid, stuid from stu where stuid in (select stuid from (select * from stu where schid=@var1) a )
where (select * from stu) is your resultset...
September 18, 2012 at 4:13 am
Create a DB maintainence plan to fulfill this
1) create a subplan for full backup and schedule it to run Monday
2) create a subplan for diff backup and schedule it to...
September 17, 2012 at 5:44 am
Try this and see if it fixes ur problem.
use Master
Go
select * from master.sys.sysprocesses
where spid>50 -- don't want system sessions
and dbid = DB_ID(name of database in question)
--Find the SPID...
September 17, 2012 at 5:01 am
Create a NON-Clustered index on the filtered column which you are issuing in DELETE statement and see if that fixes the dead locking issue to complete the statement.
It seems other...
September 17, 2012 at 4:05 am
I have overlooked at the problem statement and gave the wrong query.
Thanks Andy for correcting me.
September 17, 2012 at 3:43 am
Check if the below one helps ur purpose.
select distinct custid
from product_details
where prodid in (1,4) and custid not in (select custid from product_details where prodid=0)
September 17, 2012 at 3:07 am
It depends on the size of your database, number of tables and rows in them.
September 17, 2012 at 2:56 am
Generally, publishing to a report server running in SharePoint integrated mode,
we need to specify the TargetServerURL property to a URL of a SharePoint top-level site or subsite.
For example,...
September 17, 2012 at 12:15 am
It seems the length of the report file path is too long. Please run <select len('path including file name with extension')> and see if it is exceeding 260 or not....
September 14, 2012 at 1:41 am
Please try below one
EXEC xp_cmdshell 'FORFILES /p "C:\SSISFILES\Log\" /s /m *.txt /d -4 /c "CMD /C echo Deleting the file : @file del /Q /F @FILE && del /Q /F...
September 14, 2012 at 1:18 am
Below is the size of the tableA
namerowsreserved data index_sizeunused
TableA49132 19352 KB 8464 KB ...
September 14, 2012 at 12:15 am
September 7, 2012 at 5:42 am
Viewing 15 posts - 1 through 15 (of 17 total)