Forum Replies Created

Viewing 15 posts - 6,421 through 6,435 (of 9,707 total)

  • RE: Are the posted questions getting worse?

    Grant Fritchey (2/17/2011)


    jcrawf02 (2/17/2011)


    Brandie Tarvin (2/17/2011)


    Koen Verbeeck (2/17/2011)


    Gianluca Sartori (2/17/2011)


    Code brings more (pseudo)code, it seems...

    Definitely kill the one who started this on THE THREAD!

    :-D:-D

    I'll go fetch the angry mob! 🙂

    I'll...

  • RE: Are the posted questions getting worse?

    I rarely blog about technical stuff, mostly about writing. Today, I blogged about SQL Server and fragmentation. (It's a rephrase of something I just posted in another thread).

    If anyone is...

  • RE: installation location for mdf, ldf, backup files

    I should point out that some people don't recommend defraggin SAN drives (for some very interesting reasons). Check out this link before doing any defragging:

    http://www.las-solanas.com/storage_virtualization/san_volume_defragmentation.php

    EDIT: Sjeff, I just realized you're...

  • RE: Are the posted questions getting worse?

    Koen Verbeeck (2/17/2011)


    Gianluca Sartori (2/17/2011)


    Code brings more (pseudo)code, it seems...

    Definitely kill the one who started this on THE THREAD!

    :-D:-D

    I'll go fetch the angry mob! 🙂

    I'll supply the torches! (Who's responsible...

  • RE: Are the posted questions getting worse?

    Jeff Moden (2/16/2011)


    CirquedeSQLeil (2/16/2011)


    For the execution of Wayne:

    --get spid of code requestor

    sp_whorequestedcodeIntheThread 'Wayne'

    --use returned spids to verify the request

    dbcc inputbuffer(61)

    --output

    'Wayne definitely requested code on the thread'

    --yup that's the...

  • RE: Today's Random Word!

    Tom.Thomson (2/16/2011)


    CirquedeSQLeil (2/16/2011)


    Peter Trast (2/16/2011)


    CirquedeSQLeil (2/16/2011)


    Peter Trast (2/16/2011)


    Never been in this thread before but here it is:

    Antidisestablishmentarianism

    Yes, it is a real word 🙂

    Pseudoantidisestablishmentarianism

    quasi-pseudo-antidisestablishmentarianism

    semi-quasi-pseudo-antidisestablishmentarianism

    hemi-demi-semi-quasi-pseudo-antidisestablishmentarianism

    genuine simulated hemi-demi-semi-quasi-pseudo-antidisestablishmentarianism

    @=)

  • RE: PURPOSE OF TEMPORARY TABLES

    GilaMonster (2/16/2011)


    2) Error logging table. Purely because table variables ignore explicit transaction rollbacks

    That is probably the best reason for using table variables that I've ever seen. I'll have to let...

  • RE: installation location for mdf, ldf, backup files

    Sjeef (2/16/2011)


    Won't my sql datapages get really fragmented as a result of this "file" defrag action.?

    Logical defragmentation is not the same thing as physical defragmentation. SQL Server doesn't have a...

  • RE: SQL Server 2005 database is slow

    Grant Fritchey (2/16/2011)


    Brandie Tarvin (2/16/2011)


    Not to take away from Grant's book, but if you need information fast, Google "SQL Server Performance Tuning." There are literally hundreds of articles out there....

  • RE: Unable to create 'RollOver' files while configuring and running the profiler trace

    SQL is assuming the _1 is forcing a trace number. Remove it.

    exec @rc = sp_trace_create @TraceID output, 0, N'\\servername\D$\Folder\Trace_1', @maxfilesize, NULL, @filecount

    Should be

    exec @rc = sp_trace_create @TraceID output, 0, N'\\servername\D$\Folder\Trace',...

  • RE: Text file data to be distributed into 3 SQL Tables - how?

    The best way to deal with this issue is to work with the people who own the automated files.

    Here's what I would ask for:

    1) Keep the # of...

  • RE: Published Again!

    GAH. Got the name of the antho wrong. A Career Guide to Your Job in Hell, not "from Hell."

    Sorry, folks.

  • RE: SQL Server 2005 database is slow

    Not to take away from Grant's book, but if you need information fast, Google "SQL Server Performance Tuning." There are literally hundreds of articles out there. Or search this site,...

  • RE: Unable to create 'RollOver' files while configuring and running the profiler trace

    What response are you getting that is telling you you can't create RollOver files? Post the exact error message (type or cut-n-paste) please.

  • RE: Text file data to be distributed into 3 SQL Tables - how?

    So you have a file with multiple, repeatable column headers. How is this file generated? Is it automated or does a person fill in the sheet?

    EDIT: If automated, what sort...

Viewing 15 posts - 6,421 through 6,435 (of 9,707 total)