Viewing 15 posts - 11,071 through 11,085 (of 15,381 total)
Lynn Pettis (8/7/2012)
August 7, 2012 at 10:07 am
morepainot (8/7/2012)
August 7, 2012 at 9:26 am
Sounds like an interview or a homework question to me. 😀
August 7, 2012 at 9:15 am
Something like this is what Dwain is talking about.
create table #Something
(
ChildID int,
ChildName varchar(20),
ParentID int,
PID int
)
insert #Something
select 100, 'Bingo', 200, 1 union all
select 101, 'Pingo', 201, 1 union all
select 102, 'Zingo',...
August 7, 2012 at 9:08 am
dwain.c (8/7/2012)
My suggestion is to pass the two lists of values (@CriteriaA and @CriteriaB) as delimited strings and use a string splitter like...
August 7, 2012 at 9:02 am
asm1212 (8/7/2012)
I have go back and check the business rules regarding this to confirm...
August 7, 2012 at 8:52 am
GSquared (8/7/2012)
August 7, 2012 at 8:47 am
erics44 (8/7/2012)
Jeffrey Williams 3188 (7/15/2012)
August 7, 2012 at 8:46 am
sql-noob (8/7/2012)
how to limit a session for a user for 30 minutes after which he automatically gets disconnected and has to connect again?????
Are you talking about an IIS session or...
August 7, 2012 at 8:43 am
asm1212 (8/7/2012)
No I am not familiar with CTE's...I have never worked with them!
Using the incredibly simplified ddl I posted a few posts back here is an example of the view...
August 7, 2012 at 8:33 am
asm1212 (8/7/2012)
This has gotten overblown...
When I first posted that sample code stuff and realized it wasnt formatted once I finished posting, I remembered that there was a specific way yall...
August 7, 2012 at 7:26 am
This is indeed the second question on this topic in a few days that is quite ridiculous. Why would I care how comments are handled inside dynamic sql? Has anybody...
August 7, 2012 at 7:23 am
asm1212 (8/6/2012)
I have tried using the MAX function, but it does not...
August 6, 2012 at 3:21 pm
asm1212 (8/6/2012)
August 6, 2012 at 2:53 pm
Viewing 15 posts - 11,071 through 11,085 (of 15,381 total)