Forum Replies Created

Viewing 15 posts - 4,726 through 4,740 (of 7,505 total)

  • RE: Unable to remove primary key

    you can view the partitioned objects using these queries:

    USE [DPartitioning]

    /*

    show partitioned objects

    */

    select distinct

    p.[object_id],

    TbName = OBJECT_NAME(p.[object_id]),

    index_name = i.[name],

    ...

  • RE: How to excute The storedProcedure in Where caluse?

    IMO you are turning your cat inside out.:ermm:

    If you stick to this bad design, your queries will not perform well !!

    resulting in slow applications and over utilised servers.

    If you install...

  • RE: Tables Join Problem

    be sure to include the objects schema ! (even if it is dbo)

    don't use reserved words in your objects or always use brackets !

    In your case it was object "user"...

  • RE: moving database to another machine

    Be sure to point to the correct filelocations !

    (and they must be reachable for the sqlserver service account !!)

  • RE: How to excute The storedProcedure in Where caluse?

    IMHO your clientidS column is a prove of bad design ! (one column containing a bunch of seperate dataitems)

    Check out "normalization" at SSC.

    You cannot execute a sproc in a...

  • RE: trigger to delete FK and PK

    just to add to Gails reply..

    be sure to provide indexes that match your FK-declaration !

    (because otherwise you 'll end up with dependant table scans !!)

  • RE: QA environment data refresh strategy

    It's been a while, but I've seen a solution for mainframe db2 where you could prepare a full set of (related) data to be loaded into an environment.

    I cannot...

  • RE: query performance problem

    just a little remark:

    avoid using left and right outer joins together.

    Choose one and go with that. (I prefer left join because then you're result is formed from top to...

  • RE: Delete old versions of DTS packages

    many thanks for this usefull proc.

    All I needed to add is a @Versions2Keep parameter.

  • RE: TSQL Tuning

    Regarding the first insert:

    INSERT INTO #temp2

    ...

  • RE: Congratulations to Our New MVPs

    It seems is going to be a cosy SSC-evening at SQLPass this year,

    and by now Steve will have gotten the picture for the SSC-T 208:

    front: upper left: SQLServercentral.com and the...

  • RE: Congratulations to Our New MVPs

    Congratulations Jeff and Michael.

    A virtual pint to your honor ! (maybe we'll materialize that at SQLPass 😀 )

  • RE: Conversion problem

    Check RETURN in bol !

    Return is not used to fillup output variables, but it gives an integer value to the calling object. (mostly used to indicate OK or not OK)

    To...

  • RE: The Multiple Instance Dilemna

    Steve Jones - Editor (6/30/2008)


    I'd question all third party apps on this.

    We implemented Dynamics about 8 years ago and they said they required SA to run the application. I dug...

  • RE: Please help: I can't get rid of database inconsistencies

    And keep in mind that sql2005 may work better if the dblevel is put to 90. (=sql2005) Afterward you can put it back to 80 if needed !

    The upgrade path...

Viewing 15 posts - 4,726 through 4,740 (of 7,505 total)