Viewing 6 posts - 1 through 6 (of 6 total)
@fercasas, You are very welcome to do so, can you also comment with the blog address:-) for everyone to see and visit?
January 31, 2013 at 12:33 am
Hi,
the code is long because we deleting multi-files without checking their names,but just knowing the folder name and how old they are... and it will only delete SQL backup files(.bak,.trn)
the...
July 10, 2012 at 12:52 am
declare @Virtualname varchar(255)
declare @Virtual varchar(255)
create table #OSinfo(OSinfo varchar (255))
insert into #OSinfo
exec master..xp_cmdshell 'systeminfo'
set @Virtualname =(select ltrim(SUBSTRING(OSinfo,CHARINDEX(' ',OSinfo),LEN(OSinfo)))
from #OSinfo
where OSinfo like '%system%' and OSinfo like '%manufacture%')
if (@Virtualname not like...
June 11, 2012 at 7:35 am
well the error reads as follows, this was working a day before
OLE DB provider "MSDAORA" for linked server "CDIHWHPROD2_EIW" returned message "ORA-12154: TNS:could not resolve the connect identifier specified
".
Msg 7303,...
February 21, 2012 at 6:06 am
Hi
Does this by any means temp with the oracle drivers?
I installed this for my clients and right after they complained about oracle drivers (haven't looked the error message yet), although...
February 21, 2012 at 3:46 am
Hi
I suggest you backup your log file and shrink it (although this is not recommended on SQL best practices but i believe its the best solution at the moment)
February 6, 2012 at 3:12 am
Viewing 6 posts - 1 through 6 (of 6 total)