Forum Replies Created

Viewing 15 posts - 5,296 through 5,310 (of 49,571 total)

  • RE: Brain dumps!

    They're cheating.

    They're actual questions taken from the exams in violation of the NDA which all exam takers accept. Using them or distributing them can result in your certifications being revoked...

  • RE: Extract Locking Information

    Using something like sp_MS_foreachDB or a custom written cursor to loop over all databases, inserting into a temp table. Then select from a temp table at the end.

  • RE: Improving Performance of Logging Tables (Inserts only)

    Bharatvip (7/15/2015)


    1. Will bumping mem to 64 or 128 GB help? We know that we don't have many selects or stored procs doing a lot of joins and selects, for...

  • RE: Extract Locking Information

    Using something like sp_MS_foreachDB or a custom written cursor to loop over all databases. sys.partitions and sys.objects are specific to the current DB.

  • RE: Timeout/connection pool error

    Don't use Task Manager to look at SQL's memory. It often lies.

    In this case though it's probably right. 1GB for the buffer pool and 600MB for the non-buffer portion (thread...

  • RE: Server-side vs App-side

    Put it in the database. Putting it in your app won't help when other apps, spreadsheets, MS Access, etc are connected to the DB, when the app is changed or...

  • RE: Value of Buffer Cache Hit Ratio

    That counter has has no value at all.

    You can have a server under severe memory pressure with that counter still sitting 99%. Ignore it, use other, more useful, counters.

  • RE: Run Store Proc when table is updated with record

    Yes, with a trigger, however running long processes from a trigger is a really bad idea. Probably better to put the report code in a SQL job and in the...

  • RE: Using EXEC functions and temp tables

    Hehehe. That's the kind of thing that, when I'm optimising procedures, I tend to take out.

  • RE: Localization of a sql table to Japanese language

    karthik82.vk (7/15/2015)


    Is there any way to do it in sql itself?

    No. SQL is a database engine, not a language processor

    Are there any tools outside SQL that can be used for...

  • RE: Timeout/connection pool error

    shirish_padekar (7/15/2015)


    3. I also found that "Auto Close" property is "True" for this database, should I change it to "False" ?

    Yes. It's not related to your question, but it's...

  • RE: Are the posted questions getting worse?

    Yes, asking people to write an efficient query when you don't entirely know what you need is a really good way to get a useless answer....

  • RE: Fastest way to retrieve the result

    KGJ-Dev (7/15/2015)


    Hi Gail,

    When i see the table structure and question, i am also confused with the same questions.

    If you don't know what you want, there's not much chance we're...

  • RE: Fastest way to retrieve the result

    Could you be a little clearer as to what you want? If 32k entries all have the same datetime stamp and same load_id, how do you determine the 'first' row?

    Or...

  • RE: Using EXEC functions and temp tables

    In addition, since this is a simplification of the actual problem, it's possible (though impossible to tell for sure) that a temp table isn't necessary at all. Are you able...

Viewing 15 posts - 5,296 through 5,310 (of 49,571 total)