Forum Replies Created

Viewing 15 posts - 9,436 through 9,450 (of 9,641 total)

  • RE: Cluster index in identity column or actual value which is uniq. Pls guide

    Based on this you would want your clusered index on another column or columns and if you are using the identity column in joins you may want a non-clustered index...

  • RE: Cursor Hell

    Have you analyzed the code to see if the cursor can be replaced with something set-based?  It sounds tp me like the cursor is starting some tasks that do not...

  • RE: log file

    The DB is in Simple recovery model so the log can't be backed up.

  • RE: Vista

    I do not run Vista, mainly because I do not have a PC that would run Vista.  I also don't think Vista really adds anything I need.  I could care...

  • RE: Joining Tables in Different DB''''s

    Is CLR Integration enabled?  If it is you could write an assembly that accesses the remote data and use the assmbly to create a Table Valued function you can then...

  • RE: Reporting Services Error

    Have removed the last change you made to the report?  Have you tried using debug mode and running the report?

  • RE: Server Side Paging With SQL Server 2005

    I thought this was an excellent article with a simple solution to a complex problem.  There are definitely possibilities for performance imporvement, but the solution supplied to the problem was...

  • RE: one or many sprocs

    If you have this option it is the way to go.  Are the db's all on the same server?

    I would write db specific sp's and then have a master sp...

  • RE: Optimising a report to re-use query plans and use the correct indexes.

    I'm not sure how this will affect overall performance, but I believe it will use the same execution plan regardless.  You could union the 2 tables and since the clustered...

  • RE: how to restore database backup when server named is changed

    Here is the T-SQL for this RESTORE DATABASE NORTH

       FROM DISK = 'C:\SQL\Backup\North.bak'

       WITH MOVE 'NORTH_Data' TO 'D:\SQL\Data\North_Data.mdf',

            MOVE 'NORTH_Log' TO 'E:\SQL\Log\North_Log.ldf'

    For dull disclosure I copied this from this...

  • RE: SA Permissions

    Some other issues you may need to address are:  does revoking delete allow the user to run a truncate?  If the user has all rights except delete they can still run a drop...

  • RE: sorting puzzel

    It would appear that Sql Server is using different execution plans for the SP and the query.  Chekck the the execution plans to see what SQL Server is doing, then...

  • RE: point in time restore

    Just to clarify what Ninja is saying.  He means run the code that Deepak provided on another server or to a new database and then import the deleted table from...

  • RE: The Certification Debate

    I have taken several MS classes at New Horizons and have learned a lot, but never gone done the certification path.  I have taken some practices tests and seen many...

  • RE: Pass atemp table

    One method to allow you to re-use the stored procedure which is relying on the temp table is to check for the existence of the temp table at the top...

Viewing 15 posts - 9,436 through 9,450 (of 9,641 total)