Viewing 15 posts - 181 through 195 (of 335 total)
Heh, heh...
Turns out there was nothing wrong with my query, there was a problem on the DB server. Apparently it's been acting oddly...
May 20, 2005 at 5:27 am
Hoo-t:
I tried "ON R.ZIP=Range.Zip" right where you had the "ON ..." in your reply and got a different syntax error:
UPDATE dbo.Employee
SET CongDist = R.CongDist
FROM dbo.Ranged R
INNER...
May 19, 2005 at 7:18 am
Farrell,
Sounded like a good idea. I tried:
SET CongDist = R.CongDist
FROM dbo.Ranged R
INNER JOIN( SELECT R2.Start, R2.Stop FROM dbo.Ranged R2
WHERE...
May 18, 2005 at 10:52 am
Hopefully to close the debate on the soundness of determining Congressional districts from Zip Codes, we are provided a database of Zip Code to District matching by a data vendor....
May 18, 2005 at 10:44 am
Actually it's 1 min to update 30k rows using the 1+M row table as the source for the Update command. Looking at it I might be able to combine a...
May 17, 2005 at 1:07 pm
1:12 (old) vs 1:09 (new). It doesn't seem like it's a lot but I have to run a total of 9 queries just like it for different target tables all...
May 17, 2005 at 12:41 pm
Yup. The table is periodically rebuilt (i.e. for congressional redistricting) and then we need to run it on the whole table.
I tried:
UPDATE dbo.EMPLOYEE SET
CongDist = dbo.Ranged.CongDist
FROM dbo.Ranged...
May 17, 2005 at 12:02 pm
That was exactly it.
Thanks.
April 29, 2005 at 11:54 am
Thanks. That's what I need to pass along to the IIS folks.
April 27, 2005 at 10:41 am
The SQLDTS article is essentially a copy of the code in the MSDN article, with the added description of how to wrap the code in a COM object. We're not...
April 27, 2005 at 8:54 am
Try the code at http://www.sqldts.com/default.aspx?218. This shows you how to have conditional processing with multiple paths in a DTS workflow. It will take a little pondering to understand (at least...
April 1, 2005 at 7:17 am
We use the loop code in http://www.sqldts.com/default.aspx?246 to process multiple text files in a number of DTS jobs.
You might also want to look at the code at http://www.sqldts.com/default.aspx?218....
April 1, 2005 at 7:14 am
Here's where you need to set the cursor location
Conn.Open fstrCnn()
March 28, 2005 at 7:16 am
Answered my own question for those of you who are interested...
I had to add "conn.cursorlocation=aduseclient" to my connection definition.
March 24, 2005 at 2:21 pm
Viewing 15 posts - 181 through 195 (of 335 total)