Viewing 15 posts - 616 through 630 (of 6,486 total)
mitzyturbo (11/6/2014)
Cheers Matt, worked a treat.Don't suppose you have any experience with setting up a SAS data set as a linked server by any chance?
Sorry - do not. I...
November 6, 2014 at 10:29 am
g.britton (11/6/2014)
Don't know about the "should be done" bit though. My version doesn't need a self-join. It's just weird that SQL loses track of what...
November 6, 2014 at 10:02 am
As I recall - you'd have to convert the SAS date values. per the 9.2 version of SAS documentation online, SAS stores its dates in # of days relative...
November 4, 2014 at 1:55 pm
Brian Ward (11/3/2014)
What I did was write...
November 4, 2014 at 12:04 pm
To confirm this - this behavior only works if you use *variable length* data types. You would not be able to get away with that if you were using...
November 4, 2014 at 11:27 am
To the best of my knowledge, expanding the size of a variable length field is a metadata-only operation (the table doesn't get rewritten, therefore the indexes don't have to be...
November 4, 2014 at 7:50 am
Grant Fritchey (10/29/2014)
Matt Miller (#4) (10/29/2014)
Grant Fritchey (10/28/2014)
October 29, 2014 at 9:58 pm
Grant Fritchey (10/28/2014)
October 29, 2014 at 12:48 pm
bicky1980 (10/28/2014)
I worded my original query slightly wrong too! Shoudl have said single=25, deposit=35, monthly=value...
October 28, 2014 at 12:18 pm
seaport (10/27/2014)
Thanks for all the help.It works.
TextID NOT LIKE '%[^0-9]%'
As long as you don't have any decimal points or negative numbers.....
October 27, 2014 at 1:20 pm
Iwas Bornready (10/27/2014)
October 27, 2014 at 1:18 pm
Meow Now (10/27/2014)
October 27, 2014 at 11:57 am
I think this becomes more of a "right-sizing problem" than a "who needs them". Managers should and can be a HELP not a hindrance: mine routinely plays the...
October 26, 2014 at 1:11 pm
davoscollective (10/20/2014)
KoldCoffee (10/18/2014)
SELECT...
October 20, 2014 at 9:44 am
Have you tried simply combining the 2 statements into 1? Something like
DECLARE @a XML;
WITH XMLNAMESPACES (DEFAULT 'http://www.xxxxx')
select @a=(SELECT FileCreationDate,
(
SELECT PCE_TPD.PJN,
(
SELECT top (2) TaskCode, TaskName, RSI,...
October 17, 2014 at 12:54 pm
Viewing 15 posts - 616 through 630 (of 6,486 total)