Forum Replies Created

Viewing 15 posts - 3,406 through 3,420 (of 6,394 total)

  • RE: Today's Random Word!

    jasona.work (11/12/2012)


    The Dixie Flatline (11/10/2012)


    capnhector (11/9/2012)


    Revenant (11/9/2012)


    crookj (11/9/2012)


    JAZZ Master (11/9/2012)


    anthony.green (11/9/2012)


    capnhector (11/8/2012)


    Cliff Jones (11/8/2012)


    crookj (11/8/2012)


    capnhector (11/8/2012)


    JAZZ Master (11/8/2012)


    bcsims 90437 (11/8/2012)


    crookj (11/8/2012)


    Ray K (11/8/2012)


    opc.three (11/7/2012)


    Ground Game

    aerial assault

    Space Combat

    Space Invaders

    BMEs

    BMI

    MIBs

    Tommy Lee Jones...

  • RE: Number of Business Day in Current Quarter

    What I would do is build a calendar table and link to that based on what you class is a business day.

    http://www.sqlservercentral.com/scripts/Date/68389/

    Will also come in handy for other calendar based...

  • RE: Sql server 2012 connection

    Change the 2012 instance to listen on a different port, but not 1434 as that port is used for the SQL Browser service

  • RE: Sql server 2012 connection

    Is there a reason you have set the 2012 instance to listen on the SQL browser port?

  • RE: Can't restore transaction logs

    Sounds like the full backups last LSN is after the 11pm transaction log backup.

    Check msdb.dbo.backupset correlating the first & last LSN columns to get the restore order.

    But in this case...

  • RE: Ideal Shrink Size

    If disk space is going down but the DB total size is staying at 22.5GB then you have something else which is causing the drive to run out of space.

  • RE: Today's Random Word!

    capnhector (11/8/2012)


    Cliff Jones (11/8/2012)


    crookj (11/8/2012)


    capnhector (11/8/2012)


    JAZZ Master (11/8/2012)


    bcsims 90437 (11/8/2012)


    crookj (11/8/2012)


    Ray K (11/8/2012)


    opc.three (11/7/2012)


    Ground Game

    aerial assault

    Space Combat

    Space Invaders

    BMEs

    BMI

    MIBs

    Tommy Lee Jones and Will Smith

    apple built self aware robots

    iRobot

  • RE: Are the posted questions getting worse?

    Gianluca Sartori (11/9/2012)


    I vote Beer.

    No, wait... SQL Beer!

    Or even Red-Gate's beer, now to get Steve to ship everyone a bottle or two

  • RE: sql query pie chart

    Yep, thats varchar ordering for you as it orders left to right of the characteres in the string, not based on value, so yep doing it 1,2,3,4 would be the...

  • RE: sql query pie chart

    Add in an order by clause sorting either Asc or Desc depending on which way round you want the values to be displayed.

  • RE: Upgrade question regarding fall back

    You are right, you cant take the database from 2012 to 2005 as it will not reattach or restore.

    Two options I can think of off the top of my head...

  • RE: script for setting min and max memory of sql server

    DECLARE @a SMALLINT

    SELECT @a = cpu_count FROM sys.dm_os_sys_info

    IF @a = 1

    BEGIN

    EXEC sp_configure 'min server memory (MB)',xxxxx

    EXEC sp_configure 'max server memory (MB)',xxxxx

    ...

  • RE: What Do You Want from SQL in the City?

    Somewhere up the north of England, Manchester prefered, London was just to tricky to get to this time around.

  • RE: Converting to varchar and Sorting the order

    Jason-299789 (11/9/2012)


    Anthony's solution should work, or you could simply alias the converted field and reference that in the Order By

    Eg.

    SELECT distinct

    pd.description

    , convert(varchar(10),convert(datetime, pe.enc_timestamp, 103),103) enc_timestamp

    , pd.icd9cm_code_id

    , dsm.description

    , pd.note

    ...

Viewing 15 posts - 3,406 through 3,420 (of 6,394 total)