Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8838461
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T10:00:01+00:00 2026-06-14T10:00:01+00:00

Is there faster alternative to this : Take almost 1 minute in our server.

  • 0

Is there faster alternative to this:

Take almost 1 minute in our server.

SELECT
    tc.constraint_name, tc.table_name, kcu.column_name, 
    ccu.table_name AS foreign_table_name,
    ccu.column_name AS foreign_column_name 
FROM 
    information_schema.table_constraints AS tc 
    JOIN information_schema.key_column_usage AS kcu ON tc.constraint_name = kcu.constraint_name
    JOIN information_schema.constraint_column_usage AS ccu ON ccu.constraint_name = tc.constraint_name
WHERE constraint_type = 'FOREIGN KEY' AND tc.table_name='mytable';

Maybe using pg_class metadata?, thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T10:00:03+00:00Added an answer on June 14, 2026 at 10:00 am

    There is a problem: a foreign key can be on 2 or more columns (FOREIGN KEY (b, c) REFERENCES other_table (c1, c2)). You need to specify first, what to do with such keys.

    Here is the query i use to get all the foreign keys, but it works correctly only for simple (one column) foreign keys.

    SELECT pgcon.conname as constraint_name, 
           cast(pgcon.conrelid as regclass) as table_name,
           cast(pgcon.confrelid as regclass) as foreign_table_name,
           pga1.attname as column_name,
           pga2.attname as foreign_column_name
    FROM pg_constraint pgcon
    JOIN pg_attribute pga1 on (pgcon.conrelid = pga1.attrelid
                           and pga1.attnum = any(pgcon.conkey))
    JOIN pg_attribute pga2 on (pgcon.confrelid = pga2.attrelid
                           and pga2.attnum = any(pgcon.confkey))
    WHERE pgcon.conrelid = cast('table_name_here' as regclass)
      AND pgcon.contype = 'f'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to ask if is there any faster method how to make this
Is there any other method that is faster than doing like this? private void
Given a directed, connected graph with only positive edge weights, are there faster algorithms
Is there any equivalent of String.indexOf() for arrays? If not, is there any faster
I currently use: BufferedReader input = new BufferedReader(new FileReader(filename)); Is there a faster way?
I wondering if there is a faster (GPU time) way to draw a full-screen
Is there a trick for creating a faster integer modulus than the standard %
Is there any way to replace titles faster then str_replace function? I've got a
Is there any benchmark or comparison which is faster: place nginx in front of
Is there better use of available storage space and faster network access using the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.