MSSQLTips.com - your daily source for SQL Server tips

Google
 
Web mssqltips.com

ESSENTIALS: Home | Tips | Search | Categories | Top 10 | Products | Authors | Blogs | Forums | Webcasts | Advertise | About
Browse by Tags -

in Search

Browse by Tags

All Tags » SQL Server 2000 (RSS)
  • Deadlock with READPAST on join query - how this is possible?

    Under MSSQL 2000 I get a deadlock on a transaction. This victim transaction contains one single SELECT statement joining 2 tables using the READPAST hint. I thought this hint will cause the transaction not be blocked on locks. How can it happen that the transaction is part of a deadlock? The query looks...
    Posted to Forum by plauten on 07-01-2008
  • Sql server Interview Questions

    Dear members, we provide a solution of bugs related to sql server along with study material and interview preparation of SQL server. click below link to get your solution http://mssqlinterview.blogspot.com/
    Posted to Forum by jmaneesh on 06-23-2008
  • diffrence in DBMS and RDBMS

    what is the diffrence in DBMS and RDBMS?
    Posted to Forum by gauravtheone on 05-04-2008
  • Backup and restore the SQLserver 2000 databases and subscription

    Respected Exprts, We are using Sql Server 2000 on win2003 server . Our SQL sever 2000 is subscriber on Merge/push type replication. i backup databases daily on different interval but HOW CAN I BACKUP SUBSRIPTION AND OTHER NECESSARY FILES OF REPLICATION. AND RESTORING PROCEDURE OF ALL THESE. THANKS
    Posted to Forum by arshad on 04-04-2008
  • how to export the data from xml to sql server

    hai to all, i want to export the data from xml to table in sql server can u help me
    Posted to Forum by ruthika on 03-05-2008
  • Maintenance History Reports

    Good day all. I have about 25 SQL boxes that are 2000 and 2005. I have all the maintenance plans running successfully nightly now. What I would like to accomplish is to have all the history reports go to one location and email a report on the failed jobs. SQL 2005 doesn't have the option to add a...
    Posted to Forum by cmptrwhiz on 01-30-2008
  • Database table design for huge number of columns

    Hi I have a table (Sql server 2000) which has 14 cost columns for each record, and now due to a new requirement, I have 2 taxes which needs to be applied on two more fields called Share1 and share 2 e.g Sales tax = 10% Use Tax = 10% Share1 = 60% Share2 = 40% So Sales tax Amt (A) = Cost1 * Share1 * Sales...
    Posted to Forum by igovada on 01-24-2008
  • master.dbo.sysdatabases

    In SQL 2000 you could use this statement to get the path to a database file SELECT Filename FROM master.dbo.sysdatabases WHERE Name = 'MyDatabase' but this won't return anything in SQL 2005. Any ideas how to retrieve the path to the database from any other SQL queries?? I've seen other...
    Posted to Forum by BrianB on 12-20-2007
  • Re: Guidance on splitting into multiple FILEGROUPs

    SAinCA, I think this is the code you are referencing from this tip ( http://www.mssqltips.com/tip.asp?tip=1112 ): -- Table - The base table is stored with the -- clustered index, so moving the clustered -- index moves the base table CREATE CLUSTERED INDEX IDX_ProductID ON dbo.OrdersDetail(ProductID)...
    Posted to Forum by admin on 11-30-2007
  • Re: combining 2 store procedre

    Firman, Here are a few options: Option 1 - New consolidated stored procedure CREATE PROCEDURE dbo.spConsolidated AS EXEC dbo.Sp_collecting EXEC dbo.sp_numtoWord GO Option 2 - Copy the code from the second stored procedure to the first stored procedure Option 3 - Have the first stored procedure call the...
    Posted to Forum by admin on 11-26-2007
Page 1 of 2 (12 items) 1 2 Next >