vote up 1 vote down star
2

Hello everyone,

I have a table, schema is very simple, an ID column as unique primary key (uniqueidentifier type) and some other nvarchar columns. My current goal is, for 5000 inputs, I need to calculate what ones are already contained in the table and what are not. Tht inputs are string and I have a C# function which converts string into uniqueidentifier (GUID). My logic is, if there is an existing ID, then I treat the string as already contained in the table.

My question is, if I need to find out what ones from the 5000 input strings are already contained in DB, and what are not, what is the most efficient way?

BTW: My current implementation is, convert string to GUID using C# code, then invoke/implement a store procedure which query whether an ID exists in database and returns back to C# code.

My working environment: VSTS 2008 + SQL Server 2008 + C# 3.5.

thanks in advance, George

flag

42% accept rate

7 Answers

vote up 3 vote down check

My first instinct would be to pump your 5000 inputs into a single-column temporary table X, possibly index it, and then use:

SELECT X.thecol
FROM X
JOIN ExistingTable USING (thecol)

to get the ones that are present, and (if both sets are needed)

SELECT X.thecol
FROM X
LEFT JOIN ExistingTable USING (thecol)
WHERE ExistingTable.thecol IS NULL

to get the ones that are absent. Worth benchmarking, at least.

Edit: as requested, here are some good docs & tutorials on temp tables in SQL Server. Bill Graziano has a simple intro covering temp tables, table variables, and global temp tables. Randy Dyess and SQL Master discuss performance issue for and against them (but remember that if you're getting performance problems you do want to benchmark alternatives, not just go on theoretical considerations!-).

MSDN has articles on tempdb (where temp tables are kept) and optimizing its performance.

link|flag
"single-column temporary table X" -- appreciate if you could clarify this. I think this point is important. temporary table you mean creating a physical table or? – George2 Jun 18 at 5:41
1  
CREATE TABLE #X (thecol VARCHAR(30)) makes the temporary table (the leading # in the name is what makes it temporary) -- it lasts only as long as the procedure or session that creates it. – Alex Martelli Jun 18 at 5:51
1  
(1) if you share one physical table among all users, your code will have to filter on the rows specific to the current session, which takes time; also, a temp table will probably use less resources on the server. – Jeffrey Kemp Jun 18 at 6:12
1  
It turns out this answer may have been a bit premature. The real scale of the problem is more like 1 million records. You need to ask more questions before offering answers. – le dorfier Jun 18 at 6:24
1  
Combining this method of temporary tables with the MERGE sentence marc_s comments in his response is probably a very good way to do what you vant. – Doliveras Jun 18 at 6:40
show 7 more comments
vote up 1 vote down

Try to ensure you end up running only one query - i.e. if your solution consists of running 5000 queries against the database, that'll probably be the biggest consumer of resources for the operation.

If you can insert the 5000 IDs into a temporary table, you could then write a single query to find the ones that don't exist in the database.

link|flag
1  
See Martelli's answer for a good example. – Jeffrey Kemp Jun 18 at 5:38
1  
Yes and I mean, make sure that you run one (1) query, once only. Not one query 5000 times! :) So to use the temp table option, I'd expect the solution will involve 1 insert, followed by 1 query. I'm not a SQL Server expert though. If it was Oracle I'd run just one query (i.e. no insert, no temp table) and use a bulk in-bind for the 5000 IDs. – Jeffrey Kemp Jun 18 at 5:40
1  
I was deliberately ambiguous because my advice was general in nature and not specific to a particular db. ... Oracle has a feature called "global temporary tables" which look like ordinary tables when writing queries, but the data in them is local to the current session (i.e. usually just kept in memory) and disappears automagically when the session ends. ... I don't know about SQL Server, sorry. – Jeffrey Kemp Jun 18 at 5:57
1  
The temp table solution is potentially better because instead of parsing and running 5000 queries, the database only has to parse and run 1 query. Of course, this might be offset by the cost of inserting 5000 rows into a temp table; which is why my best option would be to bulk in-bind the values to the query, if possible. – Jeffrey Kemp Jun 18 at 5:57
1  
I don't know if you can have a persistent temp table in SQL Server. In Oracle you only need to create the temp table once, and it's available for use by any session thereafter. But again, I stress that the idea of doing a bulk insert + query is the 2nd best option; the 1st option would be to bulk in-bind the values to the query and not use a temp table at all. – Jeffrey Kemp Jun 18 at 6:21
show 8 more comments
vote up 2 vote down

What do you need to do with those entries that do or don't exist in your table??

Depending on what you need, maybe the new MERGE statement in SQL Server 2008 could fit your bill - update what's already there, insert new stuff, all wrapped neatly into a single SQL statement. Check it out!

Your statement would look something like this:

MERGE INTO 
    (your target table) AS t
USING 
    (your source table, e.g. a temporary table) AS s
ON t.ID = s.ID
WHEN NOT MATCHED THEN  -- new rows does not exist in base table
  ....(do whatever you need to do)
WHEN MATCHED THEN      -- row exists in base table
  ... (do whatever else you need to do)
;

To make this really fast, I would load the "new" records from e.g. a TXT or CSV file into a temporary table in SQL server using BULK INSERT:

BULK INSERT YourTemporaryTable
FROM 'c:\temp\yourimportfile.csv'
WITH 
(
    FIELDTERMINATOR =',',
    ROWTERMINATOR =' |\n'
)

BULK INSERT combined with MERGE should give you the best performance you can get on this planet :-)

Marc

PS: here's a note from TechNet on MERGE performance and why it's faster than individual statements:

In SQL Server 2008, you can perform multiple data manipulation language (DML) operations in a single statement by using the MERGE statement. For example, you may need to synchronize two tables by inserting, updating, or deleting rows in one table based on differences found in the other table. Typically, this is done by executing a stored procedure or batch that contains individual INSERT, UPDATE, and DELETE statements. However, this means that the data in both the source and target tables are evaluated and processed multiple times; at least once for each statement. By using the MERGE statement, you can replace the individual DML statements with a single statement. This can improve query performance because the operations are performed within a single statement, therefore, minimizing the number of times the data in the source and target tables are processed. However, performance gains depend on having correct indexes, joins, and other considerations in place. This topic provides best practice recommendations to help you achieve optimal performance when using the MERGE statement.

link|flag
The usage senario is, I have a big job/order database which contains already processed job/order, for new 5000 batch order/job requests, I will at first look-up whether the order/jobs are already processed, if not I will process un-processed order/job. Do you think merge is suitable for my scenario? – George2 Jun 18 at 6:06
1  
Yes, absolutely! This is THE perfect scenario for MERGE. You have a table with your newly processed jobs, and you then update the base table and e.g. set a flag, or add a row, or whatever it is you need to do. – marc_s Jun 18 at 6:23
1  
Yes - that's the way you would have to do it before MERGE was around :-) I would assume that using MERGE will be a bit faster, since a lot of work at Microsoft has gone into making sure MERGE is as optimal as ever possible. – marc_s Jun 18 at 6:52
1  
You can use either a normal table, or a "real" temporary table - really doesn't make a big difference, IMHO. – marc_s Jun 18 at 7:18
1  
No, not any print documents - but there are several videos on e.g. channel9 on the new SQL Server 2008 features where MS employee mention that a lot of work has put into making sure MERGE was very performant. – marc_s Jun 18 at 7:18
show 4 more comments
vote up 3 vote down

Step 1. Make sure you have a problem to solve. Five thousand inserts isn't a lot to insert one at a time in a lot of contexts.

Are you certain that the simplest way possible isn't sufficient? What performance issues have you measured so far?

link|flag
The # of queries are configurable and I want to make my solution works for big numbers, like 1M level. – George2 Jun 18 at 6:14
1  
You'll get different answers for different problems. You need to say 1MM in your question then. You need to be asking about bulk insert strategies. The answer will also be different if you are highly likely or highly unlikely to get matches. – le dorfier Jun 18 at 6:23
1M is not in the near future, current scenario is for every 15 mins, there is 5000 batch queries. Any advice? – George2 Jun 18 at 6:46
1  
Yes, try one-at-a-time and see how long it takes. If you clump them up in a batch, it can put a big load on the server all at once that it wouldn't experience otherwise. You might also try unbatching entirely and submit them as you get them. As long as it keeps up, it could be the lightest overall load - which might work for a long time. 5K @ 15 min. is only 5 per second. As long as you have a single app queing them in, it could be a reasonable way to level the load overall. The #1 piece of advice is don't solve problems you don't have yet; do the simplest thing first. – le dorfier Jun 18 at 7:05
Huge traffic is on-demenad query from other application for order status and details, my design for find unprocessed orders are just to avoid impact to the on-demand query to the big order database. Any advice? – George2 Jun 18 at 7:12
show 4 more comments
vote up 1 vote down

If you want simplicity, since 5000 records is not very many, then from C# just use a loop to generate an insert statement for each of the strings you want to add to the table. Wrap the insert in a TRY CATCH block. Send em all up to the server in one shot like this:

BEGIN TRY
INSERT INTO table (theCol, field2, field3)
SELECT theGuid, value2, value3
END TRY BEGIN CATCH END CATCH

BEGIN TRY
INSERT INTO table (theCol, field2, field3)
SELECT theGuid, value2, value3
END TRY BEGIN CATCH END CATCH

BEGIN TRY
INSERT INTO table (theCol, field2, field3)
SELECT theGuid, value2, value3
END TRY BEGIN CATCH END CATCH

if you have a unique index or primary key defined on your string GUID, then the duplicate inserts will fail. Checking ahead of time to see if the record does not exist just duplicates work that SQL is going to do anyway.

If performance is really important, then consider downloading the 5000 GUIDS to your local station and doing all the analysis localy. Reading 5000 GUIDS should take much less than 1 second. This is simpler than bulk importing to a temp table (which is the only way you will get performance from a temp table) and doing an update using a join to the temp table.

link|flag
I think your solution which checks duplicate by using whether SQL Server returns error is not very reliable, as you can see if we insert fail there could be many reasons, including duplicate value. – George2 Jun 18 at 6:59
"If performance is really important, then consider downloading the 5000 GUIDS to your local station and doing all the analysis localy." -- what do you mean download? My scenario is I have a big table with several M processed order and each time there is batch input 5000 orders to check againts the several M processed order table to find unprocssed ones. – George2 Jun 18 at 7:00
It wasn't clear that the table in the DB Had sveral M records in it. Add that info to your question! You are correct, there could be other errors when executing the insert statement. You can change my solution to absorb only a key violation error and throw other errors. Can you tell me this, 1) how long is it taking to import the 5000 records, and 2) how many of the records are already in the table? I ask, because if the # of duplicate records is small, say 10-100, then you don't save much by not sending the 10-100 inserts. – johnnycrash Jun 18 at 16:00
vote up 1 vote down

Definitely do not do it one-by-one.

My preferred solution is to create a stored procedure with one parameter that can take and XML in the following format:

<ROOT>
  <MyObject ID="60EAD98F-8A6C-4C22-AF75-000000000000">
  <MyObject ID="60EAD98F-8A6C-4C22-AF75-000000000001">
  ....
</ROOT>

Then in the procedure with the argument of type NCHAR(MAX) you convert it to XML, after what you use it as a table with single column (lets call it @FilterTable). The store procedure looks like:

CREATE PROCEDURE dbo.sp_MultipleParams(@FilterXML NVARCHAR(MAX))
AS BEGIN
    SET NOCOUNT ON

    DECLARE @x XML
    SELECT @x = CONVERT(XML, @FilterXML)

    -- temporary table (must have it, because cannot join on XML statement)
    DECLARE @FilterTable TABLE (
         "ID" UNIQUEIDENTIFIER
    )

    -- insert into temporary table
    -- @important: XML iS CaSe-SenSiTiv
    INSERT      @FilterTable
    SELECT      x.value('@ID', 'UNIQUEIDENTIFIER')
    FROM        @x.nodes('/ROOT/MyObject') AS R(x)

    SELECT      o.ID,
                SIGN(SUM(CASE WHEN t.ID IS NULL THEN 0 ELSE 1 END)) AS FoundInDB
    FROM        @FilterTable o
    LEFT JOIN   dbo.MyTable t
            ON  o.ID = t.ID
    GROUP BY    o.ID

END
GO

You run it as:

EXEC sp_MultipleParams '<ROOT><MyObject ID="60EAD98F-8A6C-4C22-AF75-000000000000"/><MyObject ID="60EAD98F-8A6C-4C22-AF75-000000000002"/></ROOT>'

And your results look like:

ID                                   FoundInDB
------------------------------------ -----------
60EAD98F-8A6C-4C22-AF75-000000000000 1
60EAD98F-8A6C-4C22-AF75-000000000002 0
link|flag
Confused about your SQL statement, 1. I am confused about how do you extract ID sttribute from each row of XML file? I did not find such statement in your reply. 2. Another question is what does this mean exactly -- "SIGN(SUM(CASE WHEN t.ID IS NULL THEN 0 ELSE 1 END))"? – George2 Jun 18 at 7:03
Thanks for your advice, my input is a string array and I do not want to wrap it into XML to add additional overhead. Do you think the solution of bulk insert into a temporary table, and then join the temporary table with the real big processed order table makes senses? – George2 Jun 18 at 7:15
1  
SIGN(...) basically will return 0 when 0 rows found, and 1 when more then 1 rows found. In your case the filter is UNIQUE so this is not really required, so you can drop the SIGN, and leave just SUM(...). – van Jun 18 at 7:18
1  
The solution of Alex using temporary table is a viable solution. But if you think of inserting rows from outside SQL, then I find it not "good" for the following reasons: 1) you break concurrency: 2 users executing your request at the same time will be either locking one another or mixing one others requests, depending on your transaction isolation level. 2) Your SP will become just a select with a join, which "relies" on data in another table - not nice. ---- And I do not think that passing an XML is an overhead: it is easy to create an input string in C#; and SQL handles it rather good. – van Jun 18 at 7:24
1  
If you do not like XML, you can pass comma-delimited string and create a UDF that converts it to a one-column table (just google for it - many people used this in pre SQLServer-2005 because XML handling was slow and code ugly) – van Jun 18 at 7:25
show 6 more comments
vote up 1 vote down

Since you are using Sql server 2008, you could use Table-valued parameters. It's a way to provide a table as a parameter to a stored procedure.

Using ADO.NET you could easily pre-populate a DataTable and pass it as a SqlParameter. Steps you need to perform:

Create a custom Sql Type

CREATE TYPE MyType AS TABLE
(
UniqueId INT NOT NULL,
Column NVARCHAR(255) NOT NULL
)

Create a stored procedure which accepts the Type

CREATE PROCEDURE spInsertMyType
@Data MyType READONLY
AS 
xxxx

Call using C#

SqlCommand insertCommand = new SqlCommand(
   "spInsertMyType", connection);
 insertCommand.CommandType = CommandType.StoredProcedure;
 SqlParameter tvpParam = 
    insertCommand.Parameters.AddWithValue(
    "@Data", dataReader);
 tvpParam.SqlDbType = SqlDbType.Structured;

Links: Table-valued Parameters in Sql 2008

link|flag
Passing parameter is the first step, then next step you suggest I do left join? – George2 Jun 18 at 7:07
You could definately use a left join. In addition, you mentioned using a c# function to convert strings into ID's. Since the table valued parameter can contain multiple fields, it may be unnecessary to do pre-processing of the data and just send data for all the fields you whish to query. – Dries Van Hansewijck Jun 18 at 14:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.