![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
recno | integer | not null default nextval('public.kah_kahxlate_recno_seq'::text) kahcode | character(25) | not null othercodetype | character varying(40) | not null othercode | character varying(40) | not null othercoden | numeric(20,0) | Indexes: "kah_kahxlate_cpk" primary key, btree (recno) "ka_kahxlate_2" btree (othercodetype, othercode) "kah_kahxlate_1" btree (kahcode, othercodetype) What can happen is that the 'othercode' can be partial - so can be accessed with LIKE - ie SELECT kahCode FROM kah_kahXlate WHERE otherCodeType = 'FRED' AND otherCode LIKE 'ABC%'; |
#3
| |||
| |||
|
#4
| |||
| |||
|
|
To make my question short, I have a (say) 3 tables. My data is in tab delimted text. I have to parse the data and direct the contents of each colums to columns in each table. How can I do this using Python? Any ideas please. |
#5
| |||
| |||
|
|
Dear group, I am a biologist dealing with tons of gene chip data. I made a schema for storing the data using postgreSQL. To make my question short, I have a (say) 3 tables. My data is in tab delimted text. I have to parse the data and direct the contents of each colums to columns in each table. How can I do this using Python? Any ideas please. Thank you PS __________________________________ Do you Yahoo!? Yahoo! Mail is new and improved - Check it out! http://promotions.yahoo.com/new_mail ---------------------------(end of broadcast)--------------------------- TIP 5: Have you checked our extensive FAQ? http://www.postgresql.org/docs/faqs/FAQ.html |
#6
| |||
| |||
|
|
Hi To make my question short, I have a (say) 3 tables. My data is in tab delimted text. I have to parse the data and direct the contents of each colums to columns in each table. How can I do this using Python? Any ideas please. You don't even have to use Python. The COPY command should be enough: http://www.postgresql.org/docs/7.4/i.../sql-copy.html Arthur |
![]() |
| Thread Tools | |
| Display Modes | |
| |