Viewing 15 posts - 5,416 through 5,430 (of 10,144 total)
Eugene Elutin (10/8/2012)
Doesn't look like SQL query to me. What curve-brackets are doing there?
It looks vaguely familiar - possibly the output of the Crystal query designer?
October 9, 2012 at 1:25 am
zahid_7777 (10/8/2012)
October 9, 2012 at 1:23 am
Welcome to ssc. There's an excellent article linked in my signature block "please read this" - have a read, it will help you get faster, more accurate answers to your...
October 9, 2012 at 1:12 am
Grant Morton (10/9/2012)
I tried the following code which ChrisM@Work suggested:
SELECT dgs.Shift, SUM(dgs.Value) AS ShiftTotal
FROM Reporting.fctDeltaGammaShift dgs
INNER JOIN Reporting.dimLifeLicence LifeLic
ON dgs.LifeLicenceID = LifeLic.ID
AND LifeLic.LifeLicence IN ('LL','LA','CAL')
INNER JOIN...
October 9, 2012 at 1:07 am
Jeff Moden (10/8/2012)
dwain.c (10/7/2012)[hrJeff - I don't think this solution works with your test harness.
I did say that I needed to make a change to get it to work and...
October 8, 2012 at 11:31 am
Carl0s_ (10/8/2012)
I have the same structure in my city table, I refer to (state region) with entity cat (federative entity), my doubt here is, is correct to...
October 8, 2012 at 10:35 am
Have a look here: http://sqlserverfaq.com/%5B/url%5D
October 8, 2012 at 10:05 am
Skanda (10/8/2012)
Function is working fine,
but when ever i call the function, it should return single value only,
if i call 10 times - 10 alphanumeric values should be written...
October 8, 2012 at 9:48 am
Sean Lange (10/8/2012)
blakmk (10/8/2012)
October 8, 2012 at 9:40 am
ChrisM@Work (10/8/2012)
Carl0s_ (10/8/2012)
October 8, 2012 at 9:27 am
Carl0s_ (10/8/2012)
October 8, 2012 at 9:25 am
You will need to persist the values which have already been generated, or read them from the table in which they are being used.
Create a table outside of the...
October 8, 2012 at 8:27 am
Grant Morton (10/8/2012)
SELECT Shift,...
October 8, 2012 at 7:58 am
dwain.c (10/8/2012)
So I'll submit this (stealing your Tally table):
;WITH Tally (n) AS (
...
October 8, 2012 at 7:33 am
You need to replace the SELECT * with actual column names.
October 8, 2012 at 7:11 am
Viewing 15 posts - 5,416 through 5,430 (of 10,144 total)