Forum Replies Created

Viewing 15 posts - 5,236 through 5,250 (of 7,429 total)

  • RE: Need to drop/remove/delete foreign key

    First are you sure it was deleted from the sysobjects table. This is not normally possible unless you reconfigure the server to allow system tables to be updated. I ask...

  • RE: ODBC Linked Server Performance

    Can yuo tell me a bit more about the remote database. Is it SQL Server? ALso post the details of how you set up the remote connection. And the query...

  • RE: Limiting the number of results to a range

    However going back to your statement and adding to what was stated. The query engine uses your conditions against the indexes on the database to meet you criteria. If like...

  • RE: recover deleted database

    However based on what you stated

    quote:


    I dont have any scripts or backup of the database


  • RE: Repository engine & SQL 2K

    Short of reinstalling SQL server check here http://msdn.microsoft.com/downloads/default.asp?URL=/code/topic.asp?URL=/msdn-files/028/000/123/topic.xml for the Meta Data Services SDK which includes the repository engine. Only problem is looks like someone at MS is fooling with...

  • RE: Help with auditing

    Just keep in mind that a trace is the only way you will see SELECT, TRUNCATE and other nonlogged style functions.

    "Don't roll your eyes at me. I will tape them...

  • RE: Date Format

    These are configurable both at the server level for default and the individual users based on language otherwise DATEFORMAT allows specific formats for entry. To set at the server level,...

  • RE: Clustered Index Seek/Scan Diff

    I agree with that change. Hard to always come up with the right statement exactly.

    "Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)

  • RE: Flash Presentation

    Not sure what you mean. When you create the flash presentation and compile it you load it with the appropriate object tag in HTML (or HTML in ASP). To find...

  • RE: Parameters

    you need to pass as a char/varchar like this

    SP_DB_BACKUP eCommerce, 'E:\SQLBackup'

    "Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)

  • RE: Client Response

    Sounds good. Thinking maybe there is a configuration issue on you machine but it would seem more like it is the SQL server but as you said runnign from another...

  • RE: Performance Monitor

    The also could be some sort of time division difference that could be the cause. I am not sure as I have not tested, but I believe the data is...

  • RE: Clustered Index Seek/Scan Diff

    In a clustered scan the data is read sequentially from the top until the actual data is reached. You will tend to see these with likes. However a seek utilizes...

  • RE: How to handle large table for retrival

    Look at you execution plan in QA or use SET SHOWPLAN_TEXT ON and see what the query engine is deciding is the best access method. Sometimes it can be as...

  • RE: SQL server CPU runs high with no result

    Glad I could help. I enjoy these kinds of things and have found reading showplan is the best way to get an understanding how to improve performance. My suggestion is...

Viewing 15 posts - 5,236 through 5,250 (of 7,429 total)