Forum Replies Created

Viewing 15 posts - 4,426 through 4,440 (of 7,429 total)

  • RE: Tracing Parallel Processing

    Check Performance Event Classes in SQL BOL.

    Degree Of Parallelism1 and Show Plan Text are supposed to help, but I have never used them.

  • RE: Difference in replication in Standard and enterpri

    For the most they are the same. I do believe Enterprise supports log shipping thou, which is not really replication but is psuedo used as an alternative.

    Here however is a...

  • RE: Definitive OLAP Book

    Microsoft(r) SQL Server(tm) 2000 Analysis Services Step by Step

    Seems to be a deceient book for the beginer which one of my fellow cohorts picked up and is using. I am...

  • RE: SQL Wishlist ??

    Oh, ok. Then the answer is No. They do not publish suggestion tht had been made. Primarily since as long as you don't know what people are really asking for...

  • RE: Inserting a single quote using stored procedures

    If coming from a client app then have the app do a replace of the ' with '' (two single quotes).

    VB

    REPLACE(variablename,"'", "''")

    C++

    cStringVar.Replace("'","''")

    Another for SQL

    set @param = replace(@param, '''', '''''')

    (Note there...

  • RE: 'PRIMARY' Filegroup is full - error

    Another thought, do you copy any files down that get deleted during processing? Also, have you run the checkdisk utility (can be found by right clicking the drive, choose properties...

  • RE: 2 left joins in 1 sql

    You can do as many join as you need to build a query set. However the more work there is to do the slower it can get, so I suggest...

  • RE: Comparing row columns in the same table

    quote:


    Have you checked out the BINARY_CHECKSUM() function?


    Just curious, what would I do with it other...

  • RE: "truncate log on checkpont"

    If this will be the default setting for all future databases set it instead in the model database. Remember when you create a database it is based on the models...

  • RE: What's With GetDate() ?

    But that only applies to if the variable remians in scope.

  • RE: killdatabase... Is it safe?

    TSQL is DROP DATABASE, and if you kill the wrong database you can create issues including killing the server. If you drop the wrong one thou and is not a...

  • RE: Copy TEXT and NTEXT fields from table to table

    I believe if the datas lenght in the text field is always under 8000 bytes then you can use INSERT...FROM, also I am pretty sure you can use the SQL...

  • RE: trace shows wrong number of reads for proc

    Can you post the query. Also, take a look at the execution plans of both and see if anything specific is happening that is different? Finally, if the views are...

  • RE: SQL Wishlist ??

    No but this thread would work fine.

  • RE: Cache miss

    First I edited my last statement as it only applies to sp_ items and does not matter it you use the 3 part name. When prefixed with sp_ it will...

Viewing 15 posts - 4,426 through 4,440 (of 7,429 total)