Forum Replies Created

Viewing 15 posts - 42,076 through 42,090 (of 49,562 total)

  • RE: Conistency Errors on SQL 7.0 DB

    From an initial read, without a backup there's no way of fixing this without a lot of data loss.

    I'm no expert on SQL 7, I've never worked with SQL...

  • RE: Calling a Stored Proc within a Cursor

    Check the SQL error log. Normally that message means that you've hit an error with a severity of 20 or higher (very, very severe) and the connection has been closed...

  • RE: Deleting temp tables in the system "tempdb".

    Those are table variables. I would guess they are used quite often.

    Don't worry about them. SQL 2005 has a caching mechanism for temp tables. If it knows the temp table...

  • RE: select query peformance

    I think that query will benefit from a nonclustered index on the Store table. Try this for starters

    CREATE INDEX idx_Store_CancelDateStoreID ON Store (StoreID, CancelDate, InDate, OutDate, NumberofParts)

    It's wider than I...

  • RE: SQL Not Using the Index, sometimes

    homebrew01 (12/30/2008)


    "isn't SQL doing 55 million seeks"

    I meant to say: Isn't SQL reading 55 million rows instead of reading 422,000 rows ?

    Take a mid-sized computer book with a comprehensive index...

  • RE: select query peformance

    bang725 (12/30/2008)


    Hi,

    Following query is taking 1 min to execute. Please suggest improvements?

    Please post table and index definitions.

  • RE: SQL Not Using the Index, sometimes

    homebrew01 (12/30/2008)


    Thanks, but I don't quite get it yet. Sorry for the "newbie" questions, but why does select * affect the use of an index ?

    * means all...

  • RE: SQL Not Using the Index, sometimes

    homebrew01 (12/30/2008)


    Does SQL think that a table scan is better for the larger result set ?

    Yes. Because you're doing a select * , the index is...

  • RE: Sql 2005 to 2000 restore

    raj acharya (12/30/2008)


    in output it will return compatibilty level of database

    if it returns 90 than that means it compatible for 2005 and if it returns 80 than it will compatible...

  • RE: Sql 2005 to 2000 restore

    mathewspsimon (12/30/2008)


    I have a production db which is running on sql 2005 and I have a development/testing system which is in sql 2000.I want to restore the Live(sql 2005) data...

  • RE: Are the posted questions getting worse?

    Jeff Moden (12/30/2008)


    It's just that I can do a lot better with the miniscule ETL tools available in T-SQL and SSIS was supposed to make ETL easier for...

  • RE: performance

    sunandas (12/30/2008)


    Around 30000000 records are there in the table.

    And you want to remove all of them?

    I cant use TRUNCATE as its index will also removed(though I can recreate it again).

    Truncate...

  • RE: Performance isssue

    Jeff Moden (12/30/2008)


    The only way it's going to get any faster is if someone sits down with the business rules, and rewrites it using some decent set based logic. ...

  • RE: Are the posted questions getting worse?

    Jeff Moden (12/30/2008)


    Seems like the intent of Microsoft was to make things easier for folks that don't know how to do it in T-SQL...

    I don't agree with that. SSIS...

  • RE: Urgent: aproblem in Storeprocedure

    Please don't cross post. It just wastes peoples time and fragments replies.

    No replies to this thread please. Direct replies to: http://www.sqlservercentral.com/Forums/Topic627035-146-1.aspx

Viewing 15 posts - 42,076 through 42,090 (of 49,562 total)