Forum Replies Created

Viewing 7 posts - 46 through 52 (of 52 total)

  • RE: Primary Key and Index on same column

    I can't think of a good reason for it.  Technically, it should not be a problem (except for extra overhead for SQL to maintain 2 indexes).  You might try comparing...

  • RE: Using 2 or more "NOT IN" statements

    Just for kicks, here's an alternate method using JOINS:

    SELECT n.*

    FROM @tblNumbers n

    LEFT JOIN @tblNumA a

     ON n.ID = a.ID

    LEFT JOIN @tblNumB b

     ON n.ID = b.ID

    WHERE a.ID Is Null

      AND b.ID Is...

  • RE: DTS package in MSDB

    I think it is in sysdtspackages.  Also try

    SELECT *

    FROM msdb..sysobjects

    WHERE Name like '%dts%'

      AND xtype in ('u', 's')

    This site has excellent DTS documentation.  http://www.sqldts.com/default.aspx?204.

    Good luck.

     

  • RE: UPDATE OPENQUERY multiple table selection possible ?

    I don't know your answer, but I experienced being in your shoes once before.  I ended up speaking with the company which made the ODBC driver.  In that case (it...

  • RE: Tempdb is growing bigger

    Prakash,

    In regard to your last question, as Richard mentioned, various operations use tempdb.  What determines if tempdb grows in size is not so much that you are doing these operations,...

  • RE: How do real programmers do an outer join

    Also, don't forget about FULL OUTER JOIN.  A discussion on outer joins would not be complete without that. 

  • RE: Restore a data base

    Hi Homero,

    Everyone has given you good advice.  Here's what I suggest:

    Start up QueryAnalyzer.  Make sure the drop down at the top shows the "master" database.  Tye in sp_who2, and click...

Viewing 7 posts - 46 through 52 (of 52 total)