Viewing 15 posts - 5,521 through 5,535 (of 15,381 total)
The closest I can come up with is something like this.
select *
from security_assignment sa
join matter m on m.r_type = sa.r_type
join [group] g on g.group_id = sa.group_id
join category c on...
March 7, 2014 at 3:06 pm
Seattlemsp (3/7/2014)
What I exect is something likeSelect record_id
from Security_assignement
Join....
where ........
The the return is
494
Thanks!
It is crystal clear except for the portions where you have a series of dots and the...
March 7, 2014 at 3:04 pm
jcrawf02 (3/7/2014)
there's an echo in here that uses more exclamation points than I do...
!!!!!!!!!!!! hehe !!!!!!!!!!!!
March 7, 2014 at 2:44 pm
Jack Corbett (3/7/2014)
March 7, 2014 at 2:13 pm
JohnFTamburo (3/7/2014)
skaggs.andrew (3/7/2014)
I need help parsing out a field, but I am not sure how to extract just the specific part that I need.
Examples:
ELA-DUPLECHEIN, KELLIE-13-14-2(A-B)
READING -LANDRY, MICHELE B-13-14-2(A)
What...
March 7, 2014 at 12:25 pm
Here is where this type of architecture really starts to break down. What happens if you have a row where the Collections would overpay the Due? Which one do you...
March 7, 2014 at 8:00 am
You need to understand that I have no idea what this data represents. You need to provide the business rules here not just some vague explanation about exact matches.
Why should...
March 7, 2014 at 7:32 am
SQLRNNR (3/6/2014)
I don't like the constant placement of a ; right before a CTE. It's wrong. A CTE does not require a ; in order to execute. ...
March 7, 2014 at 7:21 am
yuvipoy (3/6/2014)
In general it will be a bit faster because a guid is 16 bytes where a bigint is only 8 bytes. It is not likely to make a huge...
March 7, 2014 at 7:15 am
The Dixie Flatline (3/6/2014)
Given how SQL treats white space, a semicolon is more properly described...
March 6, 2014 at 2:05 pm
OK we do have some working ddl and sample data. There is one VERY critical component still missing. What are you trying to do? Meaning, given your sample data what...
March 6, 2014 at 1:14 pm
Moe_Szyslak (3/6/2014)
I have a single string "XYZ00001|Test_b|XYZ00002|Test_a|XYZ00003|Test_c" that will continue to grow over time.
Is there a way I can extract the values from the string into two separate...
March 6, 2014 at 1:10 pm
Eshika (3/6/2014)
I am trying to establish the standards for naming convention in my new project. Can you please provide me the best standards which worked for you.Thanks
Esha
This is more personal...
March 6, 2014 at 12:34 pm
Jake Shelton (3/6/2014)
I'm going around in circles trying to visualise what's happening in this code,
declare @ReturnValue int, @ProcessFlag int
exec @ReturnValue=spGetProcessFlag @ProcessFlag output
select @ReturnValue as ReturnValue, @ProcessFlag as ProcessFlag
I...
March 6, 2014 at 12:28 pm
Gazareth (3/6/2014)
This whole ;WITH thing really bugs me; it's the previous statement that should be terminated with ; , not the new one started with it! 🙂
+1
To paraphrase Lynn Pettis,...
March 6, 2014 at 12:21 pm
Viewing 15 posts - 5,521 through 5,535 (of 15,381 total)