Forum Replies Created

Viewing 15 posts - 1,966 through 1,980 (of 6,401 total)

  • RE: SYNTAX help - need varchar column size

    The column you want is max_length not precision.

  • RE: Login Timeout Expired & Log Backups

    OK, changed the timeout to 35 still got errors, changed it to 60 still got errors.

    Back to the investigations

  • RE: Today's Random Word!

    Ed Wagner (10/22/2015)


    Dumbledore

    Professor

  • RE: Today's Random Word!

    djj (10/22/2015)


    Ed Wagner (10/22/2015)


    anthony.green (10/22/2015)


    Ed Wagner (10/21/2015)


    happygeek (10/21/2015)


    DonlSimpson (10/21/2015)


    crookj (10/21/2015)


    Ed Wagner (10/21/2015)


    djj (10/21/2015)


    Ed Wagner (10/21/2015)


    crookj (10/21/2015)


    Ed Wagner (10/21/2015)


    BL0B_EATER (10/21/2015)


    happygeek (10/20/2015)


    Phone

    Line

    Wire

    Tap

    Keg

    Jug

    Head

    Honcho

    Jefe

    Sherrif

    Shot (play on the near-spelling of the name)

    Who

    Pinball

    Wizard

    Merlin

  • RE: ?HELP?T_SQL LIKE CLAUSE

    Us an OR to search the exact string

    Just uncomment a particular string at the top you want to search

    --declare @searchstring varchar(100) = '\\Dpo-doctest1\Citibank Files\Citibank\07-JULY\20150703\C12'

    --declare @searchstring varchar(100) = '\\Dpo-doctest1\Citibank Files\Citibank\07-JULY\20150703\C12\29P'

    --declare @searchstring...

  • RE: Contracting and International Travel Fees

    Where is your company based?

    I contract in the UK. Travel to clients is expensed to your company not the client. The only time you can claim expenses back...

  • RE: Today's Random Word!

    Ed Wagner (10/21/2015)


    happygeek (10/21/2015)


    DonlSimpson (10/21/2015)


    crookj (10/21/2015)


    Ed Wagner (10/21/2015)


    djj (10/21/2015)


    Ed Wagner (10/21/2015)


    crookj (10/21/2015)


    Ed Wagner (10/21/2015)


    BL0B_EATER (10/21/2015)


    happygeek (10/20/2015)


    Phone

    Line

    Wire

    Tap

    Keg

    Jug

    Head

    Honcho

    Jefe

    Sherrif

    Shot (play on the near-spelling of the name)

    Who

  • RE: ?HELP?T_SQL LIKE CLAUSE

    Initial way would be to reverse the string, find the first \ strip out the remaining characters and compare.

    Something like this

    create table #TRFile (filepath varchar(100))

    insert into #TRFile values...

  • RE: DBCC PROCCACHE

    Brent Ozar has a good script sp_blitzcache[/url], it scrapes the plan cache for whats in cache, you can get it to log results to a table to compare before and...

  • RE: sql server profiler- Trace the direct queries only!

    Put a filter on the host name and filter out anything that's not the server.

  • RE: Today's Random Word!

    Ed Wagner (10/20/2015)


    anthony.green (10/20/2015)


    Ed Wagner (10/20/2015)


    anthony.green (10/20/2015)


    Ed Wagner (10/19/2015)


    DonlSimpson (10/19/2015)


    ZZartin (10/19/2015)


    Ed Wagner (10/19/2015)


    anthony.green (10/19/2015)


    Ray K (10/19/2015)


    Ed Wagner (10/19/2015)


    crookj (10/19/2015)


    Ed Wagner (10/19/2015)


    anthony.green (10/19/2015)


    djj (10/19/2015)


    Retrieve

    Post (HTTP request)

    Office

    Depot

    Home

    Plate

    Pie

    Cake

    Butter

    Toast

    Bread

    Pudding

    Custard

    Apple

    Cider

    Ale

  • RE: Today's Random Word!

    Ed Wagner (10/20/2015)


    anthony.green (10/20/2015)


    Ed Wagner (10/19/2015)


    DonlSimpson (10/19/2015)


    ZZartin (10/19/2015)


    Ed Wagner (10/19/2015)


    anthony.green (10/19/2015)


    Ray K (10/19/2015)


    Ed Wagner (10/19/2015)


    crookj (10/19/2015)


    Ed Wagner (10/19/2015)


    anthony.green (10/19/2015)


    djj (10/19/2015)


    Retrieve

    Post (HTTP request)

    Office

    Depot

    Home

    Plate

    Pie

    Cake

    Butter

    Toast

    Bread

    Pudding

    Custard

    Apple

  • RE: Auto deployment of SQL scripts

    The core app is a 3rd party app and DB, they just hook in and deploy their own changes on top of what they develop for the client.

    Do have some...

  • RE: Query The Same FIeld Name

    Happy to help.

    Please do take a look at the posting code/data link in my signature, will help us to help you that bit quicker as we can easily recreate your...

  • RE: Query The Same FIeld Name

    OK, so you want one row not two.

    Something like the second select?

    create table #nakliyeFiyat

    (ID INT,

    gidis INT,

    donus INT,

    tarih datetime,

    fiyat int,

    aractipi int

    )

    create table #aractipleri

    (id int,

    aractipi varchar(10)

    )

    create table #il

    (id int,

    iladi varchar(10),

    iladi2 varchar(10)

    )

    insert into...

Viewing 15 posts - 1,966 through 1,980 (of 6,401 total)