Forum Replies Created

Viewing 15 posts - 1,021 through 1,035 (of 2,469 total)

  • RE: Error during insert

    Glad to have helped!







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Error during insert

    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...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Error during insert

    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...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Dumb question about using < in a select statement

    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]







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Dumb question about using < in a select statement

    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 >...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: List all views in database with particular table / column reference

    SELECT * FROM INFORMATION_SCHEMA.VIEW_COLUMN_USAGE WHERE COLUMN_NAME = 'custname'

    AND TABLE_NAME IN ('svc00200', 'svc30200')







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Curly braces in T-SQL

    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....







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Current Server?

    select @@servername - what you want ?!?!







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: how to get Alias name in columns for views

    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...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: how to get Alias name in columns for views

    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...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: how to get Alias name in columns for views

    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...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Talk like a Pirate Day ...

    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'...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Talk like a Pirate Day ...

    Ahoy y'self - is't me ye be talkin' to - ?!?! or that thar lad from down under ?!?!







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Access Vs. SQL Server Date/Time values

    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...

    migrating

    upsizing 1

    upsizing...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: How Can You Lose a Job?

    Notice Farrell - how he carefully (& cleverly) skirts the issue of hiring... maybe some beurre is required to pave the way...?!?!







    **ASCII stupid question, get a stupid ANSI !!!**

Viewing 15 posts - 1,021 through 1,035 (of 2,469 total)