Subject | RE: [firebird-support] How do I get the primary key and fields in the primary key? |
---|---|
Author | Dunbar, Norman (Capgemini) |
Post date | 2010-07-29T13:15:03Z |
Cornie,
select RDB$FIELD_POSITION,RDB$FIELD_NAME
from rdb$index_segments
where RDB$INDEX_NAME = (
select RDB$INDEX_NAME
from RDB$RELATION_CONSTRAINTS
where rdb$relation_name = 'EMPLOYEE'
and RDB$CONSTRAINT_TYPE = 'PRIMARY KEY'
)
order by RDB$FIELD_POSITION;
Replace 'EMPLOYEE' with the table name you wish.
Cheers,
Norman.
Norman Dunbar
Contract Senior Oracle DBA
Capgemini Database Team (EA)
Internal : 7 28 2051
External : 0113 231 2051
Information in this message may be confidential and may be legally privileged. If you have received this message by mistake, please notify the sender immediately, delete it and do not copy it to anyone else. We have checked this email and its attachments for viruses. But you should still check any attachment before opening it. We may have to make this message and any reply to it public if asked to under the Freedom of Information Act, Data Protection Act or for litigation. Email messages and attachments sent to or from any Environment Agency address may also be accessed by someone other than the sender or recipient, for business purposes. If we have sent you information and you wish to use it please read our terms and conditions which you can get by calling us on 08708 506 506. Find out more about the Environment Agency at www.environment-agency.gov.uk
Information in this message may be confidential and may be legally privileged. If you have received this message by mistake, please notify the sender immediately, delete it and do not copy it to anyone else.
We have checked this email and its attachments for viruses. But you should still check any attachment before opening it.
We may have to make this message and any reply to it public if asked to under the Freedom of Information Act, Data Protection Act or for litigation. Email messages and attachments sent to or from any Environment Agency address may also be accessed by someone other than the sender or recipient, for business purposes.
If we have sent you information and you wish to use it please read our terms and conditions which you can get by calling us on 08708 506 506. Find out more about the Environment Agency at www.environment-agency.gov.uk
>> How do I get the primary key and the fields in it? I need toThis works:
>> write a general data update procedure in Delphi. Using FB
>> 2.1.x and FB 2.5
select RDB$FIELD_POSITION,RDB$FIELD_NAME
from rdb$index_segments
where RDB$INDEX_NAME = (
select RDB$INDEX_NAME
from RDB$RELATION_CONSTRAINTS
where rdb$relation_name = 'EMPLOYEE'
and RDB$CONSTRAINT_TYPE = 'PRIMARY KEY'
)
order by RDB$FIELD_POSITION;
Replace 'EMPLOYEE' with the table name you wish.
Cheers,
Norman.
Norman Dunbar
Contract Senior Oracle DBA
Capgemini Database Team (EA)
Internal : 7 28 2051
External : 0113 231 2051
Information in this message may be confidential and may be legally privileged. If you have received this message by mistake, please notify the sender immediately, delete it and do not copy it to anyone else. We have checked this email and its attachments for viruses. But you should still check any attachment before opening it. We may have to make this message and any reply to it public if asked to under the Freedom of Information Act, Data Protection Act or for litigation. Email messages and attachments sent to or from any Environment Agency address may also be accessed by someone other than the sender or recipient, for business purposes. If we have sent you information and you wish to use it please read our terms and conditions which you can get by calling us on 08708 506 506. Find out more about the Environment Agency at www.environment-agency.gov.uk
Information in this message may be confidential and may be legally privileged. If you have received this message by mistake, please notify the sender immediately, delete it and do not copy it to anyone else.
We have checked this email and its attachments for viruses. But you should still check any attachment before opening it.
We may have to make this message and any reply to it public if asked to under the Freedom of Information Act, Data Protection Act or for litigation. Email messages and attachments sent to or from any Environment Agency address may also be accessed by someone other than the sender or recipient, for business purposes.
If we have sent you information and you wish to use it please read our terms and conditions which you can get by calling us on 08708 506 506. Find out more about the Environment Agency at www.environment-agency.gov.uk