Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: abkad
  • Content: Threads
  • Order by date
  1. abkad

    Optimal indexes for these queries

    HI All, I have the following queries are still running slow eventhough I added some indexes it didn't get the indexes and still giving me table scan and table delete. Have the following 2 tables each have more then 20 million rows. CREATE TABLE [dbo].[STATUS]( [NAME] [nvarchar](10) NOT...
  2. abkad

    PreparedStatment Batch with more than 1 query

    Hi there, I have the following preparedStatement: PreparedStatement proPreStProdProperties= connection.prepareStatement(" " + " DELETE FROM properties" + " WHERE id_itm = ?" + " " + " INSERT INTO properties " + " (id_itm,property_key,property_value) "+ " VALUES (?,?,?)...
  3. abkad

    Speed up insert and delete Queries

    Hi all , I am loading data files intp Sql server 2005. I must delete then insert a large number of rows into tables. The Queries for examples are Delete from customer where name='John' and country='US' . . Insert into customer values ('John','Bray','US') Insert into customer values...

Part and Inventory Search

Back
Top