Forum Replies Created

Viewing 15 posts - 226 through 240 (of 582 total)

  • RE: SQL Wait type xe_live_target_tvf

    This is the wait when you are viewing live extended events data. I'm sure it would be safe to exclude it from the list.

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Performance problem

    mbn 46383 (10/29/2013)


    Thanks for the input, it appears that a simple UPDATE STATISTICS did the trick.

    Statistics update invalidates the query plans for all tables whose stats were updated. I am...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Performance problem

    Do you get the same plan when run through the application?

    Do you always get the same plan when using different parameters?

    How different are the estimated to actual rows...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Implicit conversion doesn't add cost

    Luis Cazares (10/16/2013)


    Cost isn't a real performance indicator. It's just an estimated value used by the query optimizer to choose an execution plan.

    I am not overly concerned with performance in...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Implicit conversion doesn't add cost

    Bhuvnesh (10/16/2013)


    With such a small amount of data you can see the difference .. test it with millions or even thousands..

    amount of data is irrelevent. with 1 million...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Audit Logs in Weird Format

    you can users either SSMS or t-sql to view the logs.

    http://technet.microsoft.com/en-us/library/cc280728.aspx

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Advice on Agent job step

    it may be permissions. Does the agent service have permission to the sharepoint folder? if permissions are correct you could try the actual path instead of mapped drive. something like:

    XCopy...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Launch SSMS from command prompt

    If you wanted to have the 2012 SSMS open with just ssms.exe you can reorganize you "path" environment variable. move "C:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\ManagementStudio" the the beginning of the...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: 32 BIt ODBC SQL driver

    I dont think there is an official microsoft 32bit driver for linux, only 64bit.

    There are non-free options like easysoft. For a free option there is freeTDS[/url]. I have palyed...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Out of memory error

    once the proc is in production would you not want the results?

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: performing insert statement in a linked server

    check out the workaround in this connect item. http://connect.microsoft.com/SQLServer/feedback/details/228950 It's pretty old so I don't know if it is applicable anymore.

    you might also want to look at the permission of...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Query with One Column Changing by Month

    there area couple of other ways to accomplish this but I dont think either will be more efficient. you can use a case statement or dynamic sql.

    here is an...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Cannot delete trace files

    check if the trace is still exists.

    SELECT id,status,path

    FROM sys.traces

    If it exists and is running(status 1) you wont be able to delete the file. Even if...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: unable to run power shell script from SQL server agen

    i wasn't paying attention, I had the filename string incorrect.

    try this:

    $filename = $instanceName+"_Configuration_"+$Date+".csv"

    I was able to get it to run successfully with a modified script on sql server 2008...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: unable to run power shell script from SQL server agen

    try changing

    $filename = "$($instanceName)_Configuration_$($Date).csv"

    to

    $filename = "$instanceName_Configuration_$Date.csv"

    I wasn't able to get it to run in my test but making after making this change i no longer got the bad syntax...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

Viewing 15 posts - 226 through 240 (of 582 total)