DataSource Controls :: Import Dynamic Excel To Sqlserver
Jun 28, 2010I try to import Excel files to sqlserver problem is that the number and the titles of columns are dynamic.How can i do that by code?
View 5 RepliesI try to import Excel files to sqlserver problem is that the number and the titles of columns are dynamic.How can i do that by code?
View 5 Repliesi am Using sql server 2005. i want to copy the data of the excel file to the table.
i wrote the query like :
INSERT INTO test(empId,empName,empMailId,empContactNo)
SELECT *
FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0',
'Excel 8.0;Database=C: estExcel.xls',
'SELECT * FROM [Sheet1$]')
got the following error :
SQL Server blocked access to STATEMENT 'OpenRowset/OpenDatasource' of component 'Ad Hoc Distributed Queries' because this component is turned off as part of the security configuration for this server. A system administrator can enable the use of 'Ad Hoc Distributed Queries' by using sp_configure. For more information about enabling 'Ad Hoc Distributed Queries', see "Surface Area Configuration" in SQL Server Books Online.
then did this
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'Ad Hoc Distributed Queries', 1;
GO
RECONFIGURE;
GO
again am trying the same above query ,now am getting the following error:
Msg 7399, Level 16, State 1, Line 1 The OLE DB provider "Microsoft.Jet.OLEDB.4.0" for linked server "(null)" reported an error. The provider did not give any information about the error. Msg 7303, Level 16, State 1, Line 1 Cannot initialize the data source object of OLE DB provider "Microsoft.Jet.OLEDB.4.0" for linked server "(null)".
i want to copy the data of the excel sheet to the table.
is the SQL SSMS creates.I want to NOT import the data where Category = 'xxx', 'xxx'How can I do that? Is that possible? My SQL is very limited at this point!
CREATE TABLE [dbo].['Working DB edits$'] (
[Comments/Notes] nvarchar(255),
[Category] nvarchar(255),
[Sub-Category] nvarchar(255),
[Sub-Cat2] nvarchar(255),
[Course No] nvarchar(255),
[Course Title] nvarchar(255),
[Curricula] nvarchar(255),
[Certification] nvarchar(255),
[Cert Exp] nvarchar(255),
[Delivery Type] nvarchar(255),
[Owner] nvarchar(255),
[Learning Rqst Mgr] nvarchar(255),
[PreReq#] nvarchar(255),
[Duration (hrs)] float,
[Min Attendance] nvarchar(255),
[Max Attendance] nvarchar(255),
[Objectives] nvarchar(255),
[Description] nvarchar(max),
[Competencies] nvarchar(255),
[Target Audience] nvarchar(255),
[Equivalents] nvarchar(255),
[Expiration] nvarchar(255),
[Evidence of Training] nvarchar(255),
[Refer# Matls] nvarchar(255),
[Price] float,
[Instructor] nvarchar(255),
)
I have a project where an Excel file is dumped out in a specific format. I can't change how it's dumped. I need to make a website with .NET & C# where I can look for the Excel file (will always be in the same location - probably same name with .xls extension), dynamically get the sheetnames and import each sheet into 1 sql database.
I just need the user to go to a webpage and click "Import" button, or something like that and everything happens behind the scenes.
I was going to do it in SSIS but there were problems with dynamic sheet names and it wouldn't catch all the columns ..
i've got some problem reading excel files to store into sqlserver database. currently my code has a fileupload control and a button for me to save the excel file into a folder and read the data inside the excel file and write it into the sql database. The code works only if the excel sheet name is Sheet1.xlsx, however i tried upload a diff file named ImportUserFile.xlsx and it gave me the exception below. 'ImportUserFile$' is not a valid name. Make sure that it does not include invalid characters or punctuation and that it is not too long. i have also tried other file names and it seemed only Sheet1.xlsx works.
[Code]....
i have excel sheet i need it to be imported entire sheet into sql server 2005 i need the query to complete the task..
View 3 RepliesI got data retrieved from Sql DB in a 3 different dataset. I need to get all data from
View 7 Repliesi have different tables for product details, images, category mapping
is there any way to import/export products by excel file in database along with category mappying and pictures in one go rather that importing just the products and then categorizing each product and adding image one by one ?
I work on an intranet site management fees. management part of review tired me, I chose to work with Excel for simplicityThat's what I want to do:I have a listbox containing the modules , for a list of students registered in a module, the responsable for this must complete an authentication form. know if this is the right method, you comments are welcome)to export data from sqlserver to excel I used this code:
[Code]....
this code works with sql queries simple but with my query i had an empty excel file (I tried this query and she is correct).Should I display data in gridview and the user clicks on a button to export to excel?
If a person already
In the above mentioned article at "[URL]" instead of selecting the existed table in dbserver is it possible to create a dynamic database table based upon the structure of the excel file to be loaded??
View 1 RepliesIs there a way to import an amount of data from an excel sheet using the sheet rowindex, something like: SELECT * FROM [PLAN1$] WHERE ROWINDEX BETWEEN 1 AND 1000?
View 1 Replieswe have local net in our company.(we dont have win server.)
now i want to know how i can connect to the sqlServer in pc1 from pc2?
i have been trying to connect to SQLserver from ASP.net web developer in an n-tier architecture.But it shows this error in conncetion
A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)
I really need to create ID like this. But I don't know how use this Procedure .If you don't mind can you explain to me step by step how to use to procedure for create auto ID in database. (Should I call to this Procedure from somewhere else, like webpage button or something)
View 4 Replies i am new to this cubes concept in sqlserver . i need to connect to cubes and and query and get an result and display that result in grid view
how to connect to an cube, articles on it, code any thing
I have a problem with saving hebrew into sqlserver.I've done it before in another computer but did not have problem.Now the hebrew is saved as '???'.About the field collation, it is latin1_general_cp1_ci_as in another DB I have in another computeranf also in the current field in the current DB.I guess it not the collation.Ialso tried to change the text field to varchar, but it still saves '???'.
View 9 RepliesHow do i import selected row and columm from excel file to gridview? I have 9 rows in the excel file. I would like to display only 3 rows.
View 3 RepliesI am using Sqlserver2008.
I want to konw how to get TransactionID(customized auto generated number) with 9dgits(2 alphabets, 7 numerics).
[Code].....
I have a select query where iam fetching the data from minimum of 7 different tables by using innerjoin. I have 3 lakhs of records in that table.BY using cache Iam fetching all 3lakhs of records at a time and put in cache. by using the rowfilter i use the records.firsttime when iam fetching these 3lakhs records it takes 3min. want to improve the performance of time.How to improve the performance of time?
View 1 Replies'm using SQLServer Freetext for my search page. My Search page consists of a textbox where the user can enter freetext and next to the textbox I've got a dropdown which enables the user to refine the search (Catagories). My problem with my search is ... if a user type for exam Dog in the search textbox and he doesn't use the dropdown to refine his search ... no data will be displayed although Dog exists in my database. But if the user type Dog in the textbox and this time he select animal (as a catagory) from the dropdown ... then results will be displayed. In a nutshell I would like to have the functionailty that allows a user to search only by keywords typed in the search textbox apart from using the dropdown (catagory) as well.
View 2 Repliesi am trying but i am unable to do this one.
View 2 RepliesI have a SQL Server 2000 database. I am trying to ssetup a sqldatasource in Visual Web Developer 2008 Express. I get an error saying "Microsoft.SqlServer.Management.Sdk.Sfc cannot be loaded". Everything I can find says this is related to 2005 or 2008. Any ideas what I can look for?
View 2 RepliesCurrently I am working in Sql server 2005. I do not know the Sql Server 2000 and Sql Server 2008. what is the difference between Sql server 2005 and 2008?
What is the Difference between Sql Server 2000 and Sql Server 2005
I am using asp.net3.5,sqlserver2008. I have retrieving data from Accounts,BUDGETS like this.
select a.AccountLink,a.Master_Sub_Account,b.* from Accounts a inner join BUDGETS b
on a.AccountLink=b.GLLink where a.AccountLink=1
output of my query...
AccountLink Master_Sub_Account GLLink AccType Budget01 Budget02 Budget03
[Code]....
Is there a way to connect to a database which was created with Visual Studio Express 2008 in Sql Server Express 2008?
View 1 Replies