ease20022002
Technical User
Hi, I am developing a SQL Server 2005 reporting database. I will have a reporting template as a UI in Excel 2003 that will call stored procedures to populate the Excel reports. I've done that in the past and it is easy. I will also have a data entry template (UI) that users will use to insert some data into Excel and then press a button that would insert the Excel data into a SQL Server 2005 table.
I am wondering which method of the following methods is more efficient in terms of speed, and is more "standardized". If there is another method not mentioned below, please make a suggestion.
1) I can create an ADO link to the database table in the Excel file and have the records in Excel file be written to the table one field value at a time. I know how to do this and I would only be entering in rows that exist on the worksheet, avoiding records that were all nulls. The total amount of records would not exceed 5000 rows and 15 columns. It shouldn't take that long as I have done this before.
2) I was wondering if I could use a stored procedure that Excel would call (via ADO) in the database that would perform a "bulk insert" from the Excel file into the database table without creating any null records. I assume that would be much faster, but I am not sure if that is the standard way of exporting data from Excel to SQL Server
If someone believes #2 is the better option, could you briefly give me the conceptual code structure in both Excel and the stored procedure housed in SQL Server in order to use this method? Thanks...
Any ideas/suggestions are appreciated.
Thanks
I am wondering which method of the following methods is more efficient in terms of speed, and is more "standardized". If there is another method not mentioned below, please make a suggestion.
1) I can create an ADO link to the database table in the Excel file and have the records in Excel file be written to the table one field value at a time. I know how to do this and I would only be entering in rows that exist on the worksheet, avoiding records that were all nulls. The total amount of records would not exceed 5000 rows and 15 columns. It shouldn't take that long as I have done this before.
2) I was wondering if I could use a stored procedure that Excel would call (via ADO) in the database that would perform a "bulk insert" from the Excel file into the database table without creating any null records. I assume that would be much faster, but I am not sure if that is the standard way of exporting data from Excel to SQL Server
If someone believes #2 is the better option, could you briefly give me the conceptual code structure in both Excel and the stored procedure housed in SQL Server in order to use this method? Thanks...
Any ideas/suggestions are appreciated.
Thanks