The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
6 views

Update doesn't work inside a stored procedure called from OPENROWSET

We have a stored procedure that calculates a value and stores it into a table. We're trying to get that value with a subselect query in this way: PROCEDURE CODE: [...] Code to calculate the value. ...
1
vote
2answers
49 views

SQL SELECT * FROM OPENROWSET with Variable

I am trying to pass a variable into a SELECT statement in OPENROWSET but I keep getting an error DECLARE @dDateTIME DATE SET @dDateTIME = (SELECT SalesDate FROM dbo.SalesDate) INSERT INTO ...
1
vote
0answers
47 views

Unicode Query in OpenRowSet

I have a stored procedure with nvarchar parameters. i want to get returned table using OPENROWSET. but when i use following codes the results would be incorrect Declare @ID int Declare @sql ...
0
votes
0answers
46 views

OpenRowset with Visual Studio 2012 not working when client PC is involved

I am considering this a programming question rather than a DBA question inasmuch as it involves Visual Studio and connecting to the database server from within the app-dev environment. There are many ...
0
votes
0answers
179 views

How to use OpenRowSet to insert data into a blank file?

How to use OpenRowSet to insert data into a blank file? I need to insert into a txt file (say to D:\TDB) some select output (say select * from sys.tables) from the database INSERT INTO ...
0
votes
2answers
143 views

How to find out the reason for OLE provider permission on SQL Server?

I installed Office 2010 64 bit on Windows 7 64 bit. There is a SQL Server 2008 installed on windows 7 too. Then I try to use Microsoft.ACE.OLEDB.12.0 to access data from excel file with T-SQL. I ...
0
votes
0answers
199 views

Insert bulk data using Openrowset

I need to insert datas from a table of database A into another table belonging to the database B. using Openrowset concept INSERT INTO TableName SELECT * FROM OPENROWSET(BULK 'SQLNCLI', ...
0
votes
1answer
120 views

SQL Server Openrowset only imports 2000 rows from large excel (.xls) file

I have a large excel files (about 10MB) containing 60000 rows of datas. I would like to import all these rows into SQL Server database. Assuming the filepath is C:\file.xls, my query would be : ...
1
vote
1answer
100 views

Syntax for the OPENROWSET query

What is the correct syntax for the following SQL code in order to get data as at 2013-03-04? SELECT * FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0', 'Excel 8.0;Database=C:\Users\SQL ...
0
votes
1answer
184 views

invalid UNC path with openrowset

I've created a folder called Public off the root of my C:\drive and have shared it with "Everyone". I've also given NETWORK SERVICE read rights. But when I issue the following query in SQL Server ...
0
votes
1answer
133 views

Executing sys.xp_readerrorlog with OPENROWSET

The following runs successfully: EXEC sys.xp_readerrorlog 0 This however does not: SELECT * FROM OPENROWSET( 'SQLNCLI', 'Server=.;Trusted_Connection=Yes;', 'EXEC sys.xp_readerrorlog ...
0
votes
0answers
117 views

Openrowset Query:how to use Begin Tran & Rollback Tran

i have created a Storeprocedure for moving data from one database to another database,which i am using in VB.net application both the database are on same machine but instance are different,one is ...
0
votes
1answer
131 views

Need Single Row Result using openrowset

I have an xml which is having images tag and inside this there is 12 URL tag. I have write this query to fetch the result from xml. Hotel.xml File : <images> <url></url> ...
3
votes
1answer
445 views

reading in variables from a csv file in a SQL procedure

I have hundreds of .xlsx files that I would like to import into a database table. I have the names of the files in a csv file. I would like to loop through that csv file to make the import process ...
0
votes
0answers
49 views

OpenRowSet - trying to resolve situation when server is unavailable

Good day to all! I have SQL Server 2008 and I want to collect some data on remote servers. OpenRowSet is well enough while servers are online. But if some server is unavailable it freezes on 20-40 ...
0
votes
0answers
239 views

Active Directory SQL Query (OPENROWSET) with multi OU parameters

Working query looks like: SELECT cn, employeeID, samAccountName, mail, givenName, sn FROM OPENROWSET('ADSDSOObject', 'adsdatasource;', 'SELECT sn, givenName, mail, samAccountName, employeeID, cn ...
1
vote
1answer
198 views

How to get column names when using OPENROWSET?

I'm working on transforming some data that is contained within an EXCEL file, and I'm using OPENROWSET to do this. I can get the data with a select * type syntax, but I'm not getting any column names ...
0
votes
1answer
504 views

configuring SQL Server instance for Data Access using OPENROWSET, OPENQUERY

I have SQL Server 2012 full version installed on my standalone non-networked development PC running Windows 7 x-64. Let's say FOO is the name of my PC, and my SQL Server named instance is FOO\SQL2012. ...
0
votes
0answers
230 views

Export to Excel from SQL Server 2005 with OpenRowSet

I am trying to export my data with OPENROWSET to Excel from SQL Server 2005. To some extent I have completed that. I got the Excel file. But, for that I need to create an Excel file in the physical ...
1
vote
2answers
189 views

INSERT INTO from two different server database

I am trying to copy the data of testdabse.invoice table to basecampdev.invoice table. testdabse is a local database while basecampdev is in the server. My query for copying data to another table ...
0
votes
1answer
131 views

Create Format File with Two Row Delimiters for SQL

I can't seem to find if this is possible, I have a completely flat file that I need to organize to import into SQL server using OPENROWSET. A sample of the file looks like this: GRP 3 DTL abc DTL ...
0
votes
2answers
554 views

Insert text files to database using OPENROWSET

I have buncha text files that have phone numbers separated by carriage return. I know these are all numbers. I want to insert all of these numbers into a table in my SQL database. but the problem is ...
0
votes
0answers
26 views

using Sql Server OPENROWSET with Stored Procedure [duplicate]

Possible Duplicate: pass dynamic file path of excel to “OPENROWSET” my mind is currently out of order as I really cannot underestand what's wrong with my stored procedure definition. why ...
0
votes
0answers
70 views

Querying SSAS for list of Catalogs with OpenRowset?

I need to get a list of SSAS Catalogs using a SQL query with OpenRowset. The thing is I need a connection string that doesn't require a catalog like this: Select * FROM ...
2
votes
1answer
203 views

Dynamic CREATE TABLE command creates only “general” column data type (Excel connection)

I want to export all the tables in a DB to Excel files. The process should be dynamic, as the tables in the DB may vary. The current process is using SSIS as follows: Generate a CREATE TABLE ...
0
votes
0answers
139 views

Save query results inside Excel file

I'm a little desperate because I can't use T-SQL Function OPENROWSET because I don't have privileges to test my services, anyway. are there any way to save my query results from SQL SERVER ...
0
votes
0answers
108 views

“Microsoft.Jet.OLEDB.4.0” for linked server “(null)”. Why?

this is my sentence: insert into OPENROWSET( 'Microsoft.Jet.OLEDB.4.0', 'Excel 8.0;Database=d:\dts_ods_project\ArchivosGenerados\EMPRENDEDOR\Altas\Altas.xlsx;;HDR=YES', 'SELECT * FROM ...
0
votes
2answers
273 views

is it posible, create a temp #table inside a openrowset?

i am trying execute this query but i got a error: Msg 8180, Level 16, State 1, Line 1 Statement(s) could not be prepared. Msg 208, Level 16, State 1, Line 11 Invalid object name '#test1'. my code: ...
0
votes
0answers
153 views

Error handling strategy when BULK INSERTING or using OPENROWSET BULK

If I set MAX_ERRORS to 1 and make my 100 row datafile have 1 broken row, it will insert 99 rows and throw a run time error saying "1 row was broken....." as well as creating the two error files. If I ...
0
votes
0answers
216 views

Do OPENROWSET BULK and BULK INSERT work in the same way

I'm using OPENROWSET BULK to insert rows which are cross joined with a few fields from an existing table. I was hoping that if there was an error (for example trying to insert a varchar(20) into a ...
0
votes
1answer
613 views

pass dynamic file path of excel to “OPENROWSET”

I want pass dynamic URL of excel to "OPENROWSET". NOTE - I am passing returned result of excel file to cursor. I want to pass file path to "@excelpath", I have tried many ways but its giving syntax ...
0
votes
1answer
138 views

OPENROWSET BULK behaviour and lack of an ERRORFILE when it goes wrong

I'm having great difficulty using OPENROWSET BULK Basically, if it tries to insert a NULL into a NOT NULL column, it throws a run time error. If it tries to insert a non-number into an 'int' it throw ...
0
votes
1answer
243 views

Failing to delete record from linked server

I've spent the past two days searching everywhere for a solution to my problem but without any luck. I have this query that deletes record from a remote server: delete from OPENROWSET('SQLNCLI', ...
1
vote
2answers
378 views

CSV FormatFile for OPENROWSET BULK catering for both plain COMMA and “COMMA” [duplicate]

Possible Duplicate: SQL Server Bulk insert of CSV file with inconsistent quotes I have been given a million row CSV to import into SQL Server that is basically like this: "A",B,C,D,"E","F" ...
0
votes
1answer
873 views

BULK INSERT / OPENROWSET FormatFile Terminator for CSV file with , (comma) in the data

I've written a nice import for my million row CSV that works quite nicely (using OPENROWSET BULK (I didn't use BULK INSERT because I need to cross join with some other columns). The formatfile uses a ...
1
vote
1answer
2k views

SQL SERVER bulk insert ignore deformed lines

I have to import SAP unconvered lists. These reports look quite ugly and are not that well suited for automated processing. However there is no other option. The data is borderd around minus and pipe ...
0
votes
1answer
2k views

T-SQL, OPENROWSET copying tables between databases on the same server

I am developping some code that transfers data between SQL servers. In this phase, all my work is on the same server (local, where I am the owner), but I am already trying to implement the OPENROWSET ...
1
vote
1answer
902 views

OPENROWSET vs BCP

I need to export data from Sql Server 2008 to Excel/CSV file. I have two options for that: OPENROWSET BCP Which will be better options if amount of data is large and security is concern?
0
votes
0answers
563 views

How to call SPs with #temp using OpenRowSet in a View?

I am trying to run a stored procedure from an application which supports connecting to only tables and views. My work around was to use a view which gets results from SP via Openrowset(). Turns out ...
1
vote
1answer
1k views

How to create and populate a table in a single step as part of a CSV import operation?

I am looking for a quick-and-dirty way to import CSV files into SQL Server without having to create the table beforehand and define its columns. Each imported CSV would be imported into its own ...
0
votes
1answer
5k views

how to use openrowset to execute a stored procedure with parameters

I'm creating a stored procedure which gets some parameters and in turn these parameters are sent to another stored procedure which I'm calling from openrowset but I'm getting some syntax errors. ...
0
votes
1answer
258 views

SQL Server openrowset() test column count in MS Access table

Haven't found an answer via Google. I need to execute this code from SQL Server stored proc. I have a folder with 100+ access dbs with a table called tblReports. Some of the access db's have an ...
0
votes
1answer
6k views

OPENROWSET with Excel file

I want to execute simple statement: SELECT * FROM OPENROWSET('MICROSOFT.JET.OLEDB.4.0','Text;Database=C:\Temp\;','SELECT * FROM [test.csv]') And suddenly I get this message today morning: Msg ...
0
votes
1answer
2k views

SQL Server 2005 into Excel with OPENROWSET MSG 7399/7303

My patience is at an end with this issue. I run jobs via SSMS or the agent that have been working perfectly fine up until last week that insert data from tables/views into various Excel files. Most ...
0
votes
1answer
245 views

SQL Server - OPENROWSET error

I've got the very same problem as described in the article Using OPENROWSET to dynamically retrieve SP results when SP contains # temp tables. Using the work-around I succeed in make stuff work: ...
0
votes
2answers
3k views

SQL Server 2005 OPENROWSET insert into Excel - text to number formatting

So it's not a huge deal, but with Google not returning anything more recent (mostly 2007 or so) about it possibly being an Excel driver issue...I came here to ask the question as what I found as an ...
1
vote
1answer
294 views

How to refer to files relative to project root in deployment of a database project?

I have a database project in Visual Studio 2010 where in the post-deploy script I want to import the binary data from two files into the database. To that end, I have code very much like the following ...
0
votes
2answers
376 views

C# app to select data from MySQL and insert to SQL-server (blob files)

I want to run a query on a MySQL database and insert the results in a SQL-Server 2008 R2 database. In my table (MySQL database) there are multiple columns and one of them contains a file path. I want ...
1
vote
2answers
746 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 ...
1
vote
2answers
1k 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 2