Search Database Fields in Environment

Is it possible to search for where specific fields are used within my environment?

Comments

  • Please navigate to the query editor and run the following query:

    SELECT
        TABLE_SCHEMA,
        TABLE_NAME,
        COLUMN_NAME
    FROM INFORMATION_SCHEMA.COLUMNS
    WHERE COLUMN_NAME = 'Your Column Name' ORDER BY TABLE_SCHEMA, TABLE_NAME;
    


Sign In or Register to comment.