If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > ANSI SQL > Tab-delimited format

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 08-11-04, 15:29
lyndsey lyndsey is offline
Registered User
 
Join Date: Aug 2004
Posts: 4
Tab-delimited format

Hello all,
What is the syntax for tab-delimited? I use ||'~'|| for tilde-delimited, but I dont know how to change it to tab-delimited.

Thanks,
lynd.
Reply With Quote
  #2 (permalink)  
Old 08-11-04, 16:21
LKBrwn_DBA LKBrwn_DBA is offline
Registered User
 
Join Date: Jun 2003
Location: West Palm Beach, FL
Posts: 2,455
Cool

set tab on
__________________
The person who says it can't be done should not interrupt the person doing it. -- Chinese proverb
Reply With Quote
  #3 (permalink)  
Old 08-11-04, 21:59
lyndsey lyndsey is offline
Registered User
 
Join Date: Aug 2004
Posts: 4
how to set the tab on? :?
Reply With Quote
  #4 (permalink)  
Old 08-12-04, 03:46
Littlefoot Littlefoot is offline
Lost Boy
 
Join Date: Jan 2004
Location: Croatia, Europe
Posts: 3,629
Concatenate field with a function that returns TAB. In Oracle, that would be something like this:

select field1 || chr(9) || field2 || chr(9) ... from your_table;
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On