Viewing 15 posts - 1,021 through 1,035 (of 2,469 total)
Forgot to tell you that if you go to BOL (books online) & look up "pages and extents" you should find a fairly comprehensive explanation...here's an extract...
The fundamental unit of...
September 20, 2005 at 9:11 pm
Do you have several varchar columns ?! What is the length of the varchar columns - the sum of all the columns should not exceed 8060!! Better yet - could...
September 20, 2005 at 9:04 pm
Also - I've personally not used the IIF function in Sql Server, but try changing your syntax to:
SELECT clinno, ssn, dateof, 'IIF(blue > 3, "Depressed", "OK")' AS depressed
FROM [dbo].[ORYX_PPS]
September 20, 2005 at 8:53 pm
Jim - I'm not sure why you said you cannot use case...when statements ?!?! Any particular reason....?!
Your query should work with:
SELECT clinno, ssn, dateof, Depressed = case when blue >...
September 20, 2005 at 8:46 pm
SELECT * FROM INFORMATION_SCHEMA.VIEW_COLUMN_USAGE WHERE COLUMN_NAME = 'custname'
AND TABLE_NAME IN ('svc00200', 'svc30200')
September 20, 2005 at 9:50 am
that's right 5000 posts...oops, I mean - remi....oops, I mean one who doesn't give back NAMES given on loan....OOPS, I mean RGR'us....
September 20, 2005 at 9:42 am
I'm sure something could be done with this given TIME which I unfortunately do not have....
The name in syscolumns actually stores the "alias" not the original column name...so..
select * from...
September 20, 2005 at 9:34 am
can't really find anything except to "eyeball" it using:
SELECT VIEW_DEFINITION FROM INFORMATION_SCHEMA.VIEWS WHERE TABLE_NAME = 'vwFormsUsage'
..doesn't help I know..well, if anyone can find it remi can so we'll just...
September 20, 2005 at 7:53 am
remi - I think the requirement is not just to get the columns used but the alias used against each...there must be a way to get this information - nothing...
September 20, 2005 at 7:36 am
Begad me lad - belay that addled thinkin' - ye be talkin' bilge - me ain't got no more skoolin' than me Cap'n - 'tis the grog in me talkin'...
September 19, 2005 at 3:04 pm
Ahoy y'self - is't me ye be talkin' to - ?!?! or that thar lad from down under ?!?!
September 19, 2005 at 1:35 pm
Nicholas - here're links to articles on upsizing - don't know if any of them address datetime datatypes in particular - hopefully at least one will...
September 18, 2005 at 7:38 pm
Notice Farrell - how he carefully (& cleverly) skirts the issue of hiring... maybe some beurre is required to pave the way...?!?!
September 16, 2005 at 8:48 pm
Viewing 15 posts - 1,021 through 1,035 (of 2,469 total)