Forum Replies Created

Viewing 15 posts - 1,951 through 1,965 (of 6,401 total)

  • RE: Today's Random Word!

    djj (10/23/2015)


    anthony.green (10/23/2015)


    Ed Wagner (10/22/2015)


    Math

    School

    Study

    Invest

  • RE: Table level read and write permissions?

    Take a look at GRANT

    GRANT SELECT ON .... TO ....

    GRANT INSERT UPDATE DELETE ON .... TO ....

    Also take a look at ROLES in case you need to do this to...

  • RE: Today's Random Word!

    Ed Wagner (10/22/2015)


    Math

    School

  • RE: Are the posted questions getting worse?

    Anyone in the UK after a "SQL Trainer" contract role? Travel across Europe all expenses paid?

    I would have jumped on this like a sky rocket, but I have...

  • RE: Memory issue

    Take a look at sys.dm_os_performance_counters

  • RE: DBCC CHECK DB outcome - DB Refresh

    Try it out see what happens. Restore a DB with NORECOVERY to leave it in a restoring state, then run your maintenance plan.

  • RE: Slow site

    Site is slow for me today, taking a good 30 seconds to a minute to switch between topics and posting.

    Just took 60 seconds to get to forum 433-1 and then...

  • RE: Hallengers script to Backup subfolders

    You will need to hack the script to remove the servername from the backup path.

  • RE: Today's Random Word!

    crookj (10/22/2015)


    anthony.green (10/22/2015)


    djj (10/22/2015)


    anthony.green (10/22/2015)


    Ed Wagner (10/22/2015)


    BL0B_EATER (10/22/2015)


    crookj (10/22/2015)


    anthony.green (10/22/2015)


    Ed Wagner (10/22/2015)


    Dumbledore

    Professor

    Gandolf

    Beard

    Hair

    Biker

    Leather

    Cow

    Tipping

    Tractor

  • RE: SQL Loop HELP!

    If I understand right, you don't need a loop for this if the other values are static.

    declare @month date ='2015-10-01'

    create table #destination (code char(3), mon date, value int, measure char(6))

    create...

  • RE: Today's Random Word!

    djj (10/22/2015)


    anthony.green (10/22/2015)


    Ed Wagner (10/22/2015)


    BL0B_EATER (10/22/2015)


    crookj (10/22/2015)


    anthony.green (10/22/2015)


    Ed Wagner (10/22/2015)


    Dumbledore

    Professor

    Gandolf

    Beard

    Hair

    Biker

    Leather

    Cow

  • RE: SYNTAX help - need varchar column size

    Add a second join a second copy of sys.columns and join back on the referenced column data instead.

    select distinct

    A.name as tab_name ,

    B.name as col_name,

    C.name as col_type...

  • RE: SYNTAX HELP please ..

    Please see your other post, I posted an updated query

    http://www.sqlservercentral.com/Forums/Topic1729985-2799-1.aspx

  • RE: Today's Random Word!

    Ed Wagner (10/22/2015)


    BL0B_EATER (10/22/2015)


    crookj (10/22/2015)


    anthony.green (10/22/2015)


    Ed Wagner (10/22/2015)


    Dumbledore

    Professor

    Gandolf

    Beard

    Hair

    Biker

  • RE: SYNTAX help - need varchar column size

    For the FK details, left join to sys.foreign_key_columns on the parent values to the sys.columns values

    select distinct

    A.name as tab_name ,

    B.name as col_name,

    C.name as col_type ,

    case when...

Viewing 15 posts - 1,951 through 1,965 (of 6,401 total)