Viewing 15 posts - 3,541 through 3,555 (of 8,731 total)
Welsh Corgi (1/14/2016)
Phil Parkin (1/14/2016)
You should include table schemas in your...
January 14, 2016 at 12:29 pm
SQLRNNR (1/14/2016)
Luis Cazares (1/14/2016)
Ed Wagner (1/14/2016)
BL0B_EATER (1/14/2016)
Grant Fritchey (1/14/2016)
Ed Wagner (1/14/2016)
Phil Parkin (1/14/2016)
Grumpy DBA (1/14/2016)
January 14, 2016 at 10:14 am
wrightyrx7 (1/14/2016)
Luis Cazares (1/14/2016)
Maybe someone else can...
January 14, 2016 at 9:07 am
I'm not sure what's the problem. The code should be working and there's no missing parenthesis. That's just another reason why I hate Oracle.
Maybe someone else can help.
By the way,...
January 14, 2016 at 8:52 am
crookj (1/14/2016)
Ed Wagner (1/14/2016)
SQLRNNR (1/13/2016)
Ed Wagner (1/13/2016)
SQLRNNR (1/13/2016)
whereisSQL? (1/13/2016)
jasona.work (1/13/2016)
SQLRNNR (1/13/2016)
Ed Wagner (1/13/2016)
crookj (1/13/2016)
Grumpy DBA (1/13/2016)
djj (1/13/2016)
DonlSimpson (1/13/2016)
GirlTatoo
Dragon
Tiamat
Smaug
Smog
Los Angeles
Rams
RaidersShafted
Referees (the always win)
Cheats
Dishonest
Patriots (New England)
Disgusting
January 14, 2016 at 8:42 am
Phil Parkin (1/14/2016)
Grumpy DBA (1/14/2016)
January 14, 2016 at 8:38 am
Ed Wagner (1/14/2016)
BL0B_EATER (1/14/2016)
Grant Fritchey (1/14/2016)
Ed Wagner (1/14/2016)
Phil Parkin (1/14/2016)
Grumpy DBA (1/14/2016)
January 14, 2016 at 8:29 am
wrightyrx7 (1/14/2016)
Luis Cazares (1/14/2016)
SELECT T1.*,
(SELECT END_DATE
FROM (SELECT T3.SMN_DATEC-1...
January 14, 2016 at 8:04 am
sqlnewbie17 (1/14/2016)
Is there a better way of doing this.My environment is sqlserver...
January 14, 2016 at 7:55 am
Once you get the splitter, you just need to pivot the data.
CREATE TABLE #SplitTest( String varchar( 8000));
INSERT INTO #SplitTest VALUES( '111#222#33333#44#555#66');
SELECT MAX( CASE WHEN ItemNumber = 1 THEN Item END)...
January 14, 2016 at 7:47 am
Oracle does not use TOP(n). One alternative is to filter by ROW_NUMBER().
SELECT T1.*,
(SELECT END_DATE
FROM (SELECT T3.SMN_DATEC-1 AS END_DATE,
...
January 14, 2016 at 7:38 am
You just need to change the condition from the WHERE into a CASE statement in the column list.
--From this
SELECT ColA,
ColB,
ColC,
...
January 14, 2016 at 7:19 am
Orlando Colamatteo (1/13/2016)
NineIron (1/13/2016)
January 13, 2016 at 11:42 am
"In order to understand recursion, one must first understand recursion"
It's mostly used when some code calls itself either directly or indirectly. For it to work, you need to find a...
January 13, 2016 at 10:49 am
Viewing 15 posts - 3,541 through 3,555 (of 8,731 total)