Tagged Questions
The openrowset tag has no wiki summary.
6
votes
4answers
2k views
OpenRowSet command in TSQL is returning NULLS
Been investigating for a while now and keep hitting a brick wall. I am importing from xls files into temp tables via the OpenRowset command. Now I have a problem where I’m trying to import a certain ...
4
votes
1answer
285 views
Open Blob fields using Openrowset in SQLSERVER 2008 R2
I need help to read a fileobject from SQLServer2008 R2 using the Openrowset, i can write a File to a Blob column like this:
INSERT INTO myTable(FileName, FileType, Document)
SELECT 'Text1.txt' AS ...
3
votes
1answer
40 views
Connect to a webservice from SQL
SQL Server is able to open excel sheets (xlsx), access databases (mdb) and other data streams using data providers (e.g. JET, ACE) and OPENROWSET.
Are there similar facilities to extract data from a ...
3
votes
8answers
10k views
How to export SSIS to Microsoft Excel without additional software?
This question is long winded because I have been updating the question over a very long time trying to get SSIS to properly export Excel data. I managed to solve this issue, although not correctly. ...
2
votes
1answer
557 views
sql server openrowset to read huge xml files in one step
It's my first post ever... and I really need help on this one so any one who has some knowlege on the subject - please help!
What I need to do is to read an xml file into sql server data tables. I ...
2
votes
3answers
392 views
Help with OPENROWSET in SQL Server (Impersonation issue)
Basically I am looking to select the contents of a pdf into a table.
I am using this query:
SELECT *
FROM OPENROWSET(BULK N'\\Server\Share\filename.pdf', SINGLE_BLOB) rs
The query won't run ...
2
votes
0answers
545 views
OpenRowSet, OpenQuery, OpenDataSource - which is better in terms of performance
This can be a debatable answer, but I'm looking for the case where a local Excel file needs to be exported to a local SQL Server 2008' table.
Has anyone ever had the chance to check execution time to ...
2
votes
2answers
149 views
t-sql, sql table inner join spreadsheet
I have a table (AmenityData) of data and a column of this table contains postalsectors e.g. E14 7
I also have an Excel spreadsheet with a list of postal districts e.g. E14
I need to get all the data ...
2
votes
3answers
7k views
Cannot initialize the data source object of OLE DB provider “MSDASQL” for linked server “(null)”
Having an interesting issue. I'm reading from an excel file on a server via an OpenRowset in Sql2005. I've run the query a number of times without any problems. I've just gone out for a quick meeting ...
1
vote
2answers
50 views
OPENROWSET - how to read everything as text?
I am using the following command to load data into SQL Server:
INSERT INTO [NewTable]
SELECT * FROM OPENROWSET
(
'MSDASQL', 'Driver={Microsoft Text Driver (*.txt; *.csv)};DBQ=c:\SomeFolder\;'
, ...
1
vote
1answer
43 views
SQL 2008 OraOLEDB.Oracle Provider returning “exceeded simultaneous SESSIONS_PER_USER limit”
We have an SQL job that when run as standard user (with appropriate access) returns the error seen in the title. However when we change the job to run as 'sa', it works flawlessly. The same ...
1
vote
3answers
482 views
Convert scientific notation to float when using OpenRowSet to import a .CSV file
I am using openrowset to import a csv file into SQL Server. One of the columns in the csv file contains numbers in scientific notation (1.08E+05) and the column in the table it is being inserted
By ...
1
vote
1answer
107 views
Import files into SQL Server 2008 database
I'm trying to import a large amount of files from one database into another. The original database stored the filenames in a database table and the actual files somewhere on disk.
The new database ...
1
vote
1answer
329 views
MS T-SQL 2008: Executing an openrowset sql string will not work
Running this code
DECLARE @SQL VARCHAR(2500) =
'''SELECT z.* from openrowset(''''SQLNCLI'''',''''Server=server;UID=user;PWD=pwd;'''',
''''SELECT distinct x.PackageName
FROM ...
1
vote
1answer
101 views
openrowset to self
I have a stored procedure that returns around 1000 rows.
I want to SELECT from it.
Here is an example of what I want to do.
SELECT * FROM (EXEC my_proc)
That doesn't work so I have to use ...
1
vote
1answer
244 views
OpenRowSet ICommandPrepare::Prepare Error
I've got a DTS Package executing a number of steps that was working 100% correctly in the past.
In recent weeks it keeps failing on a step where OpenRowSet is used to perform an MDX Query against a ...
1
vote
1answer
684 views
Force addition/deletion of a linked server and correct syntax to import data into a table from Excel
I'm trying to create a linked server in Sql server 2008 R2, just tried downloading the '64-bit version of the Office 2010 Access AD Engine' exe from Microsoft.
Unfortunately, I had tried adding a ...
1
vote
0answers
463 views
BCP utility to create a format file, to import Excel data to SQL Server 2008 for BULK insertion
Am trying to import Excel 2003 data into SQL table for SQL Server 2008.
Tried to add a linked server but have met with little success.
Now am trying to check if there's a way to use the BCP utility ...
1
vote
2answers
11k views
'Microsoft.ACE.OLEDB.12.0' 64x Sql Server and 86x Office?
The error:
OLE DB provider 'Microsoft.ACE.OLEDB.12.0' cannot be used for distributed queries because the provider is configured to run in single-threaded apartment mode.
And the answers I'm seeing is ...
1
vote
2answers
5k views
SqlServer to Excel export with OPENROWSET
All,
I am successfully exporting to excel with the following statement:
insert into OPENROWSET('Microsoft.Jet.OLEDB.4.0',
'Excel 8.0;Database=C:\template.xls;',
'SELECT * FROM [SheetName$]')
...
1
vote
3answers
4k views
Accessing Oracle DB through SQL Server using OPENROWSET
I'm trying to access a large Oracle database through SQL Server using OPENROWSET in client-side Javascript, and not having much luck. Here are the particulars:
A SQL Server view that accesses the ...
0
votes
2answers
56 views
How to parse data from a CLOB in SQL Server?
I would like to use OPENROWSET with the BULK command to load data into SQL Server as a CLOB, and as a second step to parse the CLOB and load read the data as a table.
E.g.:
SELECT BulkColumn
FROM ...
0
votes
0answers
57 views
How to resolve “Could not find installable ISAM.” error for OLE DB provider “Microsoft.ACE.OLEDB.12.0”
I am trying to import data from Excel 2007 (.xlsx) files into SQL Server 2008 using a T-SQL OpenRowset() command with the "Microsoft.ACE.OLEDB.12.0" OLE DB provider, and I'm getting a persistent ...
0
votes
0answers
21 views
Querying an OPENROWSET linked to an OData service or an IQueryable object
I would like to access an OData service or an IQueryable object, as a table, from an SQL Server query. Is this "easily" accomplishable?
Writing an ODBC driver is a complex solution. There are other ...
0
votes
0answers
42 views
Error when using OPENROWSET and the OleDb Provider against a excel file
Here is my problem:
I used a SELECT using the OPENROWSET and the OleDb Provider against a excel file, for example:
SELECT * FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0','Excel ...
0
votes
0answers
70 views
How to correctly insert image data from XML file to database table using vb.net, sql server 2005 and openxml
How to correctly insert image data from XML file to database table using sql server 2005 and openxml,XML file is written by vb.net DataSet.WriteXml method?
image data is stored in database table is :
...
0
votes
2answers
271 views
Using OPENROWSET to dynamically retrieve SP results when SP contains # temp tables
My Scenario
I'm working on a database which will contain many details from various Stored Procedures in different databases across the entire server. The information I'm attempting to gather now is, ...
0
votes
0answers
29 views
non-sa adhoc queries using openrowset microsoft.ace.olebd.12.0
Help!
Would highly appreciate if anyone could show a solution on how to use adhoc queries using openrowset Microsoft.ACE.OLEDB.12.0 on a non sa account? Been having a hard time looking for this all ...
0
votes
1answer
287 views
Upload csv Files Using SQL Server OpenRowSet Function
I need to upload multiple files (file1, file2, file3...) into tables (Table1, table2, table3...) in a sql server DB using OpenRowset function. All the files are kept in C:\download
I use the ...
0
votes
0answers
268 views
Access to the remote server is denied because the current security context is not trusted
When I execute the below stored proc I get an error:
ALTER PROCEDURE [dbo].[procExcelQuotebyItem]
(
@OrderNumber INT
)
WITH EXECUTE AS 'CSS\CS00SQL0004 SQL'
AS
BEGIN
SET NOCOUNT ON
DECLARE ...
0
votes
1answer
96 views
How to use a parameter in Openrowset
I want to use a storedprocedure as a table in another storedprocedure. Here is my code:
ALTER PROCEDURE [dbo].[Rapor_FaturalandirilmisFaturalandirilmamisSeansKarsilastirmasi]
-- Add the ...
0
votes
1answer
308 views
T-SQL: issue with string concat
I have a set of audio files with names GreenLine1.mp3, GreenLine2.mp3 e.t.c. I'm going to write them into a table as BLOB (I use MS SQL Server'08), here's my sql request:
DECLARE @aud AS ...
0
votes
1answer
328 views
OPENROWSET converting phone number in excel sheet to decimal format instead of varchar
One of my field in excel sheet is a phone number and when I bulk import using openrowset and insert it in varchar(50) field it gets converted into decimal format.
This is what I am doing:
CREATE ...
0
votes
0answers
683 views
unable to import excel 2007 to sql server using openrowset function
I want to import records in excel 2007 to sql server 2005 table. I used the query following query to select the reocrds.
select *
FROM OPENROWSET ('Microsoft.ACE.OLEDB.12.0' ,'Excel ...
0
votes
0answers
265 views
Remove Field Terminator for Fixed Width data in BCP/Openrowset XML Definition file
I am trying to perform a BCP/Openrowset import of a text file where I don't have control over the format. The data is fixed width but also has field terminators (';'). I initially got it running with ...
0
votes
1answer
138 views
Error when using openrowset for particular record
INSERT INTO OPENROWSET('MSDASQL', 'Driver=PostgreSQL Unicode;uid=postgres;Server=localhost;port=5432;database=data;pwd=xxx',
'select ...
0
votes
2answers
877 views
openrowset for excel: can we skip several rows?
I will use the following sql to read data from excel, but sometimes I need to skip first several rows. e.g the real data begins from line 5, so I need to skip the first 4 rows, is that doable?
...
0
votes
1answer
438 views
How to read values from Excel using Openrowset Function?
I am reading excel sheet using openrowset function?
My Excel sheet has numeric value in General Type Column. For some reason these values are brought over as nulls even though they have a values. I ...
0
votes
1answer
1k views
Import from csv (into different columns) via Openrowset and Microsoft.ACE.OLEDB.12.0
I want to clarify how I could import data from .csv into table with 3 columns (see CR Ranking.csv below). My query:
select * FROM ...
0
votes
1answer
267 views
Moving from 32-bit to 64-bit, how to make linked server (sp_addlinkedserver) work
Here is some sample code that worked fine in a 32-bit machine (SQL server 2005) and needs to be updated for a 64-bit... I know this is a common problem but have not been able to find how to fix it!
...
0
votes
2answers
366 views
Executing a query on csv data stored in an ntext column
Say that the raw text of CSV exports and an associated timestamps are stored in a database, where one record is equivalent to one export.
Does anyone have a way to execute a query on the CSV file ...
0
votes
1answer
288 views
OPENROWSET inserts null
I am using this:
insert into bla select *
FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0',
'Excel 8.0;HDR=YES;Database=c:\bla.xls',
'select * from [Sheet1$]');
but for some reason some values ...
0
votes
2answers
655 views
Maintain transaction on Linked server inside a stored procedure which uses OpenRowSet command to read data from Excel file
I have a Helper DB which is on 32bit sql server and i have added a linked server of 64bit,
to perform Excel Import operation as Jet.oledb driver is not supported on 64-bit sql server machine.
...
0
votes
2answers
4k views
The OLE DB provider “MSDASQL” has not been registered
I'd like to extract data from a .csv file. I cannot use OpenRowSet on a 64-bit machine because it says:
Msg 7403, Level 16, State 1, Line 1
The OLE DB provider "MSDASQL" has not been registered.
...
0
votes
1answer
624 views
import of excel in SQL imports 'NULL' lines
I have a stored procedure that imports differently formatted workbooks into a database table. does work on them then drops the table.
Here is the populating query.
SELECT IDENTITY(INT,1,1) AS ID
...
0
votes
1answer
783 views
Using OPENROWSET in an INSERT statement while specifying the values of another column?
I'm using OPENROWSET(BULK ...) to insert the contents of a file into my table. The problem is that I also need to specify the value of another column in the same INSERT statement.
I have something ...
0
votes
3answers
4k views
Using openrowset to read an Excel file into a temp table; how do I reference that table?
I'm trying to write a stored procedure that will read an Excel file into a temp table, then massage some of the data in that table, then insert selected rows from that table into a permanent table.
...
0
votes
2answers
1k views
Running an XMLA Statment in SQL Query?
I'm trying to create a new role on my analysis DB.
i have tested multiple combination :
when running a simple MDX query with Openrowset => it works.
when running the it works.
when trying to create ...
-1
votes
3answers
163 views
Import Excel data to SQL Server
I want to insert the data from excel file into the SQL Server..
I used the following SQL Statement:
SELECT *
FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0',
'Excel ...