Viewing 5 posts - 16 through 20 (of 20 total)
that tool works well...
other resources/alternates:
http://www.sqldts.com/default.aspx?204
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=8&messageid=155452
sorry if you've already checked them out.
May 17, 2005 at 1:01 pm
yes... here's another summary.
http://www.7hertz.com/archives/2005/01/dts_sql_agent_ownership_problem.html
May 16, 2005 at 1:21 pm
i started using count(1) when count(*) appeared not to return results in a timely manner (on very large table, lots of rows/columns). if truly implemented the same way by...
May 11, 2005 at 1:27 pm
this should do the trick. modify at will to include other data...
select a.*
from dbo.u_external_requests a
where a.stage in (
select top 2 stage from dbo.u_external_requests b
where b.acct_number = a.acct_number
and b.stage...
May 6, 2005 at 1:51 pm
you don't need a cursor. you should be able to accomplish this by normalizing your data, and using an identity column.
especially because your doing something like this... which is odd.
April 13, 2005 at 3:30 pm
Viewing 5 posts - 16 through 20 (of 20 total)