Viewing 6 posts - 16 through 21 (of 21 total)
Could you try deleting the records after disabling the FK constraints referring this particular table. This could be an issue if there are lot of referrences to the table from...
September 24, 2003 at 6:31 am
Do you have an option to try out the same with an SMTP Mailing Service instead of the POP 3?
September 24, 2003 at 3:26 am
I think you are missing out on a "Begin" and "End".
September 24, 2003 at 1:26 am
Insensitive cursors are read only. Hence updates to the table needs to be done explicitly using the update statements. Using cursors for updating records in large numbers is not a...
September 23, 2003 at 5:52 am
Try the following query. This would work.
begin
Declare @x1 as varchar(5)
Declare @x2 as varchar(5)
set @x1=null
set @x2=null
select *
from
t1
where
isnull(f1,'')=isnull(isnull(@x1, f1),'') and
isnull(f2,'') = isnull(isnull(@x2,f2),'')
end
In a query when you try to...
September 22, 2003 at 11:43 pm
Viewing 6 posts - 16 through 21 (of 21 total)