I have security
table with three attributes cusip , isin, sedol
with thousands of rows. I wanted to send all cusips
to vendor 1
, isins
to vendor 1
and vendor 2
All sedols
to vendor 3
. In my current implementation I have hardcoded cusip, isin, sedols
to respective vendors in python code. I wanted to check is there any better solution to this?
One way is to create a column - vendor_name
. But in that case I will have to specify vendor_name
for all rows.
Another way to add comments at attribute level and use sql to extract
SELECT pg_catalog.col_description(c.oid, a.attnum) AS column_comment,a.attname
FROM pg_catalog.pg_class c
JOIN pg_catalog.pg_attribute a ON a.attrelid = c.oid
WHERE c.relname = 'security' AND a.attnum > 0 AND NOT a.attisdropped;
or I will have to create a metadata table which is replica of security
table with two columns. column name
and vendor name.
In future there would be addition of more columns which will have to part of different vendors.
I have security
table with three attributes cusip , isin, sedol
with thousands of rows. I wanted to send all cusips
to vendor 1
, isins
to vendor 1
and vendor 2
All sedols
to vendor 3
. In my current implementation I have hardcoded cusip, isin, sedols
to respective vendors in python code. I wanted to check is there any better solution to this?
One way is to create a column - vendor_name
. But in that case I will have to specify vendor_name
for all rows.
Another way to add comments at attribute level and use sql to extract
SELECT pg_catalog.col_description(c.oid, a.attnum) AS column_comment,a.attname
FROM pg_catalog.pg_class c
JOIN pg_catalog.pg_attribute a ON a.attrelid = c.oid
WHERE c.relname = 'security' AND a.attnum > 0 AND NOT a.attisdropped;
or I will have to create a metadata table which is replica of security
table with two columns. column name
and vendor name.
In future there would be addition of more columns which will have to part of different vendors.
Share Improve this question asked Apr 2 at 3:08 SachinSachin 656 bronze badges 3 |1 Answer
Reset to default 0In my current implementation I have hardcoded
cusip
,isin
,sedol
to respective vendors in python code.
I think this is absolutely fine, as you have also hardcoded these 3 column names in your database schema. Only you can tell how likely/how often this setup is going to change, how dynamic your application needs to be, and how you handle migrations in your database schema.
If your python application needs to run with different databases that have different columns for different vendors, using dependency injection instead of hardcoded values and making the configuration easy to change (in the code, or in a config file) is the obvious first step.
Using comments on the attributes in the database schema is a fancy way to do this configuration. While allowing you to store everything in the database, and deploying/managing databases independently from your python application, it is rather unusual (but not unheard of). You may be in a situation where you benefit from this, but you may also not; changing configuration in a database schema (migration) may be harder than you'd like. And in any case, your python code probably still has vendor-specific code that does not allow adding arbitrary new vendors; so whether you choose these by column name or by vendor name might not even make much of a difference.
If you want to be completely free in your choice of vendors (and your python application can actually handle that), and need to support any number of vendors without doing a database migration, you probably will need to use the entity-attribute-value pattern.
'vendor N'
because it's wasteful to repeat a string for all rows, you can make it an enum instead. Or add a table mappingsmallint
identifiers to those strings and use a foreign key to that table. I'm not sure what you have in mind with the SQL comment approach. Please try to addcreate
statements for the tables involved, a few sample/mock rows and what result/end state you're trying to achieve based on those. – Zegarek Commented Apr 2 at 5:40