Viewing 13 posts - 76 through 88 (of 88 total)
we have a similar set up and found it necessary to test the scenarios on a smaller subset. where indexes are place may partially have to do with the qrys...
January 20, 2005 at 4:38 pm
Just my limited world view but if anything i think companies are going to scared into NOT buying anything unless they are forced to. Money is still an issue for many and at...
January 20, 2005 at 4:27 pm
It might be helpful to post what you have even if you believe it to be wrong.
January 7, 2005 at 12:54 pm
So If i read this right a code with 9 records would be divided between the first three but a record with 10 would be divided between the 4?
--step 1...
January 7, 2005 at 9:44 am
Your syntax looks fine. [id] must be in the result set in order to do a join.
December 24, 2004 at 10:51 am
I don't know if this will help in your situation or not but i had a similar problem with ssns. I used a combination of truncation and soundex to find...
December 20, 2004 at 8:58 am
Oh - I see what you are saying. I use that all the time on my personal computer for SS and Mysql but at work Tsql is not considered programming so...
July 29, 2004 at 8:56 am
Thank you for your help.
I am checking on the first. Where do you turn on the Debug SQL flag?
July 29, 2004 at 7:35 am
Nevermind - Yes you can. There is a section on this in a book called SQL Server XML Distilled (curlingstone press)
Essentially use...
January 28, 2004 at 9:43 am
I'm a newbie too - so maybe someone knows different. You can't do it with Bulk Insert Task. You can do an xml Bulk insert with SQLXML bulk load though.
January 28, 2004 at 9:37 am
Try this:
DECLARE @n int
SET @n = (
SELECT min(no)
FROM test
)
WHILE @n is not null
BEGIN
SELECT * FROM test WHERE no = @n OR no = @n + 1
/** Choose: (wasn't...
December 21, 2003 at 11:41 pm
If you have some sort of date or identity col you could use a dynamic task to assign the max value to a global variable before the insert.
The...
December 18, 2003 at 9:25 pm
Viewing 13 posts - 76 through 88 (of 88 total)