Viewing 15 posts - 136 through 150 (of 152 total)
first find out how much extra space is there in the db, shrinking it etc.
July 2, 2009 at 9:34 pm
Thanks everyone for your inputs...
April 6, 2009 at 8:33 am
Thanks for your response... I tried this as below..
use testdb
go
set ansi_padding OFF
--drop table t1
create table t1 (RowNum INT IDENTITY(1,1), col char(5) NULL)
Go
insert t1 select 'abc'
insert t1 select ''
insert...
April 4, 2009 at 10:23 am
select '<MESSAGE type = "XYZ" Content ="XYZ"
...
March 23, 2009 at 9:26 am
ok can you help me with this one, this line is a part of my stored proc.. how do I remove " in front of XYZ and use ASCII code....
March 23, 2009 at 9:23 am
Did you start backup job again manually?
March 18, 2009 at 2:47 pm
Does that show any error on sql error log?
March 18, 2009 at 2:39 pm
Are you using trusted connection to login to the server? you can use -E if yes.
March 13, 2009 at 8:34 am
chicagonj,
did you try killing this spids and dropping the objects? did it work?
March 12, 2009 at 3:26 pm
Use following tables from MSDB in your query and it willgive you allthe necessary details.
sysjobs, sysjobhistory, sysjobschedules, sysjobservers & sysjobsteps...
----------------------------------------------------------------------------------------
March 12, 2009 at 3:24 pm
Try this --
Alter this view alltogather to a different code since you anyways want to drop it.
ex. alter view "viewname" as select getdate();
& then try dropping it.
March 12, 2009 at 9:38 am
use sp_depends and see if there are any dependencies on this table/view? There might be some parent-child relationship for this table to other tables.
You have to drop view first if...
March 12, 2009 at 9:18 am
Viewing 15 posts - 136 through 150 (of 152 total)