Viewing 15 posts - 31 through 45 (of 126 total)
Matt, I haven't made myself clear.
I use linq to sql, it's great!
What's better is linq and the entity relationships. ETLM I user that also.
What I am looking for specifically is...
March 27, 2009 at 11:46 am
No, sorry, from Franklin TN originally, but live in (today) snowy Denver.
Need to go home cause of blizzard conditions.
Lynn, dude you rock.
March 26, 2009 at 10:17 am
Have any of you seen the challace and viewed another way it looks like a face?
Or a cube drawn on paper, and how the perspective can change.
I liken doing updates...
March 26, 2009 at 9:56 am
Bob, just because I know how to do updates (in mass) or inserts in mass to tables. Doesn't mean I favor the language of use. Don't get me wrong, I...
March 26, 2009 at 9:46 am
I didn't realize my rant was only about cursors.
I figured that MS might be smart enough to take loop language and translate it directly to sql which it seems...
March 26, 2009 at 7:12 am
I have heard of mumps and always regarded it as a disease.
And dataphore is a strange word.
March 25, 2009 at 8:47 am
I guess it all depends on your environment and the maturity of your database.
in sql2008 I have found it best to first find the final output you want to achieve,...
March 24, 2009 at 3:58 pm
personally the sql commands I have for reports don't travers more than 5 or 6 tables. If you are traversing a lot of tables, then pre-compiled is better. But most...
March 24, 2009 at 1:07 pm
GilaMonster (3/24/2009)
foxjazz (3/24/2009)
I am on 2005 and tmp tables are fine by me.
Please post 2005-related questions in the 2005 forums in the future. I'm not asking to be pedantic. I'm...
March 24, 2009 at 10:32 am
I have an idea on how this could be done.
Create 2 new tables with an identity, insert the records and join on identity.
But I don't think that is a prefered...
March 24, 2009 at 10:06 am
GilaMonster (3/24/2009)
3191 3621004
3193 3621005
3340 3621006
3391 3621007
3392 3621008
3394 3621009
Correct?
Can I use...
March 24, 2009 at 9:57 am
GilaMonster (3/24/2009)
foxjazz (3/24/2009)
Are you guys saying it can't be done.
It can be done easily. It's a trivial problem. I'm just missing some information I need.
I don't know what your data...
March 24, 2009 at 9:51 am
If I write a cursor function to do this, would you guys understand it better?
March 24, 2009 at 9:35 am
GSquared (3/24/2009)
declare @ID int;
--
select @ID = productcontrolid
from productcontrol
where productcontrolid in
(select top 25 productcontrolid
from productcontrol
order by productcontrolid desc);
That'll get you an ID you can use for your update.
Then just write...
March 24, 2009 at 9:30 am
being as sarcastic as possible, you may control the order if you wish. Maybe using order by??
I don't care, unique is unique and that's all that matters.
March 24, 2009 at 9:08 am
Viewing 15 posts - 31 through 45 (of 126 total)