Viewing 15 posts - 13,336 through 13,350 (of 15,381 total)
Lowell (12/16/2011)
populating city/county/state if you know the zip is no problem, but
if...
December 16, 2011 at 9:42 am
If you are looking to delete (or truncate) all tables take a look at the undocumented stored procedure "sp_MSforeachtable". You should be able to plug that into your search engine...
December 15, 2011 at 9:03 am
You altered the column from varchar to int. π
December 14, 2011 at 11:03 am
You're welcome. Glad that worked for you.
--edit--
Of course a recursive cte is still row by row processing, it is just done behind the scenes. I don't think in your your...
December 14, 2011 at 9:24 am
Thanks for the ddl and such. You were so close!!! Just need to add the RootID to the original query so you can group by it at the end.
;WITH cte...
December 14, 2011 at 9:08 am
integritec (12/14/2011)
As to doing 10 JOINs - maybe...
December 14, 2011 at 9:03 am
omalie24 (12/14/2011)
Yes toddasd it isβ¦.Sean Lange how would u have gotten it to move to the next row without a cursor
Set based processing is paradigm shift in your thinking. You...
December 14, 2011 at 8:33 am
integritec (12/14/2011)
Sean Lange (12/13/2011)
That solution would require a large amount of dynamic sql with potentially hundreds of joins to the same table.
Sure, my solution isn't necessarily the best by any...
December 14, 2011 at 8:26 am
omalie24 (12/14/2011)
December 14, 2011 at 8:08 am
Thanks for the ddl and sample data. It is totally unclear what your data is and what you are trying to do.
My problem is how will I get the query...
December 14, 2011 at 7:14 am
MothInTheMachine (12/13/2011)
I'm trying to use a uniqueidentifier in a where clause and I've been unable to get past this error
(Conversion failed when converting from a character string to uniqueidentifier.).
select...
December 13, 2011 at 2:56 pm
Looking at this again I don't think between is your answer. The confusion lies in the way you posted this. It is very unclear what your table looks like, the...
December 13, 2011 at 2:45 pm
Learner1 (12/13/2011)
Ohh I stepped out...SET based ..I never tried that ..What details would you require from me for that....(also do you need a NYQUIL???? :-))
Details...ddl (create table scripts), sample...
December 13, 2011 at 2:37 pm
Learner1 (12/13/2011)
I think this is what I have to do but instead of @ChildID I will have to use Cursor to fetch...
December 13, 2011 at 1:02 pm
Viewing 15 posts - 13,336 through 13,350 (of 15,381 total)