Tagged Questions
-2
votes
0answers
54 views
BCP Command to import xlsx file in sql server 2000 [closed]
Can any one tell me whether it is possible to import an xlsx file into sql server 2000.
If Yes then how can we select only specific columns from the xlsx file to import it in sql server 2000.
Thanks ...
0
votes
1answer
120 views
SQL Server 2000 Truncate Deadlock
We are currently running a database on SQL Server 2000. The database constantly imports data from flat files for later querying. This process is done by a series of SQL Server stored procedures and ...
0
votes
2answers
229 views
In SQL Server 2000 how to convert table to text file
In SQL Server 2000, I need to convert a table data (whole, not partial) to a text file (csv or tab).
How can I do this with a table (tblCustomer) which has name, address, phone number, for example?
...
0
votes
0answers
163 views
BCP command to create file from temporary table failed in SQL Server 2000 degugger
I created a procedure which use the BCP command to create the file from a global temporary table. When the procedure is executed in Query Analyzer, process is completed and file is created.
But If I ...
0
votes
0answers
404 views
BCP… queryout execution erroneously returns zero rows where data is know to exist
I have written a BCP process with queryout as option. As a result the query is exectuted and the results are (or should be) written to the designated output file. The query that is being used has ...
0
votes
1answer
173 views
sql server 2000 data in view to xml file
I am trying to get data from a table and store it as XML File as shown in Here. In a view I created the following:
Select [name],[surname],[age] From Students
and from a stored procedure I want to ...
2
votes
2answers
317 views
How to import data from a view in another database (in another server) into a table in SQL Server 2000?
I was thinking about using bcp command to solve the user authentication, but does a bcp command capable to import to a table in my database? By the way, I am using SQL Server 2000 environment.
Here's ...
4
votes
2answers
2k views
Getting bcp.exe to escape terminators
I need to export some data using SQL Server 2000's BCP utility. Sometimes my data contains characters, such as \t and \n, that I need to use as column and row terminators. How do I get BCP to escape ...
0
votes
2answers
673 views
MySqlServer2000 data export to text file?
I need to export all data from a database into a text or csv file from MSSQL Server2000. I have read from msdn and found that a tool 'bcp' could be useful for exporting data into text file. But MSSQL ...
1
vote
2answers
6k views
BCP out Error in SQL2000: SQLState = 37000, NativeError = 4060
I have created a proc that grabs all the user tables in a local DB on my machine. I want to be able to create a flat file of all my tables using BCP and SQL. Its a dummy database in SQL 2000 ...