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 > Table Access OR File Manipulation

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 02-19-02, 03:57
tho tho is offline
Registered User
 
Join Date: Feb 2002
Posts: 16
Table Access OR File Manipulation

Hi guys
I was wondering if you could help me.

I am currently designing Perl DBI code to extract data from tables from Sybase Database under UNIX.
There are a dozen of tables I need to extract information from.
The biggest tables are ACCOUNTS and SUBSCRIBERS.
ACCOUNT has 10 million rows and SUBSCRIBERS has 20 million rows.
SUBSCRIBERS is related to the ACCOUNTS table as every account has subscribers.

I am questioning my strategy for this design.
At the end of the extraction process, I need to end up with 1 or 2 flat files that shows rows of SUBSCRIBER data and rows of ACCOUNT data associated to those subscribers.

Which is the better option in terms of performance and reliability:

Access the sybase tables with SELECT+JOIN sql statements, order and write the results to the overall flat file file immediately ?

OR

BCP out the results into multiple files and manipulate/rearrange/order them into a single file under Unix.

I would be most grateful if you could help me out.
Cheers
T
Reply With Quote
  #2 (permalink)  
Old 03-29-02, 09:19
rhs98 rhs98 is offline
Super Moderator
 
Join Date: Feb 2002
Location: Hampshire, UK
Posts: 441
sounds similar to what i am doing at the moment; but i am using oracle and alot more data (but differently: 150million rows related to 3000rows + alot of additional processing). I decided to go down the oracle (database) road...
Reply With Quote
  #3 (permalink)  
Old 03-31-02, 19:12
nigelrivett nigelrivett is offline
Registered User
 
Join Date: Oct 2001
Location: England
Posts: 426
try putting your queries into views and using bcp to extract the data. You should find that the fastest and easiest way.
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