[VIEWED 5325
TIMES]
|
SAVE! for ease of future access.
|
|
|
Kalopoolbasi
Please log in to subscribe to Kalopoolbasi's postings.
Posted on 08-10-08 11:56
AM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
Hi guys,
I am supposed to copy the result of a query into a flat file. After looking at your problem/solution, I tried the following:
Bcp Select.....From....Where..... out "c:\abc.txt" -c -T
Then I got the error:
Msg 102, Level 15, State 1, Line 12
Incorrect syntax near 'out'.
How should I get it to work?
Thanks
|
|
|
|
smoothcriminal
Please log in to subscribe to smoothcriminal's postings.
Posted on 08-10-08 1:10
PM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
You can use Export/Wizard instead.
|
|
|
reverse_engineer
Please log in to subscribe to reverse_engineer's postings.
Posted on 08-15-08 3:10
PM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
try this syntax:
bcp "select * from whatever" queryout c:\authors.txt -c -T
basically i think you need the quotes around your query and not your export file... let me know if that helped
|
|
|
reverse_engineer
Please log in to subscribe to reverse_engineer's postings.
Posted on 08-15-08 3:10
PM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
try this syntax:
bcp "select * from whatever" queryout c:\authors.txt -c -T
basically i think you need the quotes around your query and not your export file... let me know if that helped
|
|
|
Kalopoolbasi
Please log in to subscribe to Kalopoolbasi's postings.
Posted on 08-15-08 3:45
PM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
Thank you. i will try that.
|
|
|
Kalopoolbasi
Please log in to subscribe to Kalopoolbasi's postings.
Posted on 08-15-08 4:05
PM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
I am copying my query result into a temp table and trying to write the contents of the temp table into a flat file..
When I do:
BCP "#temp_NS_events" queryout c:\abc.txt -c -T
I get the error:
Incorrect syntax error near 'BCP'
|
|
|
rawbee
Please log in to subscribe to rawbee's postings.
Posted on 08-15-08 4:56
PM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
if you just need to export query result in to text file then just run query as result to file
Query->Result to->reuslt to file
all the best ,
have good weekend
|
|
|
Chintamani
Please log in to subscribe to Chintamani's postings.
Posted on 08-15-08 6:01
PM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
use tempdb
create table playertemp
( playerID varchar(25),
playerFname varchar(25),
playerLname varchar(25),
email varchar(25))
insert into playertemp
select * from test.dbo.player //just use your query over here
and then
bcp tempdb.dbo.playertemp out "c:\playertemp.txt" -c -T -SKalopoolbasi
note Kalopoolbasi is the server name
This should work.
|
|
|
Kalopoolbasi
Please log in to subscribe to Kalopoolbasi's postings.
Posted on 08-16-08 5:38
PM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
Thanks Chintamani...I will let you know how it went after I try this.
Thank you very much.
|
|
|
smoothcriminal
Please log in to subscribe to smoothcriminal's postings.
Posted on 08-17-08 12:23
AM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
Why do you have to put the results in Temp table taking TEMPDB resources. Remember SQL server 2005 uses lot of TempDB resources than SQL 2000. Just use Export/Import wizard and schedule it if you like to.
|
|