Viewing 9 posts - 1 through 9 (of 9 total)
Thank you phil but ,, when imported again into the database is inserted as Space and not null so that makes a difference. As we are feeding into other applications,...
February 4, 2010 at 10:01 am
Thanks emily but still 'NULL' and NULL makes a difference when you import in the table.
February 4, 2010 at 9:14 am
Thanks Matija!!
But this will not fetch the tables within a procedure when the tables used in the procedure are from a different database.Please check my previous post for the requirement.
May 14, 2009 at 5:33 am
Try this
set rowcount 1
select 1
while @@rowcount > 0
delete Emp1 where 1 < (select count(*) from Emp1 a2
where Emp1.Eno = a2.Eno
and...
July 2, 2008 at 3:39 am
thanx i needed a scenario which has table with columns for different months.thanx anyways..i solved it.
October 9, 2007 at 10:29 pm
You could use
sp_helpconstraint tblproducts
sp_help tblproducts
This will list you all the foreign keys the table is referring and also other Table referenceing this table.
September 19, 2007 at 10:38 pm
Viewing 9 posts - 1 through 9 (of 9 total)