A Data Dictionary stores information about all user-defined objects in the database. It usually comes with utilities to cross-reference all system components to each other.
I have a database on server with around 60 tables and now I want to export Data Dictionary of the database (including table structures)..
I can do that on my local machine which has PHPMyAdmin, however, I am not able to find way to export it on…
In Identifying Your Oracle Database Software Release Oracle states that you can find your "platform-specific release number" (patch set) by querying PRODUCT_COMPONENT_VERSION:
To identify the release of Oracle Database that is currently installed…
I have a SQL table that looks like this:
AAA, Amanda, Anthony
AAA, Anna, Andrew
BBB, Boris, Benji
BBB, Blondie, Bobby
I'm trying to use a SQL data reader to read the data then insert the results into a Dictionary>
The…
I'm wondering if there is a utility that exists to create a data dictionary for a MySQL database.
I'm considering just writing a php script that fetches the meta data about the database and displays it in a logical format for users to understand…
I have a table name student and like 35 schemas in my DB.
how can i get in which schema the table student exists?
(there might be more than one in different schemas).
I've tried through pg_class but I don't know how to get schema name from there.
Recently I have updated from MySQL 5.1 to 5.5 and after few weeks the following error message was displayed each time I access the phpMyAdmin application:
1146 - Table 'data_dictionary.CHARACTER_SETS' doesn't exist
I have investigated the issue to…
I have large and complex SQL Server 2005 DB used by multiple applications. I want to create a data-dictionary for maintaining not only my DB objects but also cross-reference them against applications that use a specific object.
For example, if a…
I am trying to extract a data dictonary from the sql developer.I made sure that i was connect to the database and i am able to write queries and get output. Then i go to generate a db doc it shows successfull and then when i go to the folder and…
How could I do this SQL query?
Name Database: database_1
Column: Collation
Value: latin1_swedish_ci
I need the list of ALL "database_1" tables that have columns whose value contains the text %latin1%.
My final goal: I need to change these values in…
I would like to create a data dictionary for all the tables and columns that I have imported in my Dataiku project.
For example, in SAS there are SASHELP.VCOLUMN and .VTABLE that covers such functionality.
Is there a smart way to do it in Dataiku?
Unfortunately the BOL is a little vague on this, but index_id = 0 on sys.indexes or sys.partitions appears to refer to the table itself where there is no clustered index on the table. True - or am I missing something?
Using Oracle XE 10g.
We have an application that uses a database user with restricted access. Because it is very cumbersome to find out by trial and error which tables this user needs to have access to, we are looking for a way to query the Oracle…
When I create an Oracle database it has a lot of tables in it with strange names. What are these tables? Should I keep them? If not, how can I avoid creating them?
These are the table names:
LOGMNR_UID$ LOGMNR_SESSION_EVOLVE$
LOGMNR_GLOBAL$
…
When you query the ALL_TAB_COLS view on Oracle 9i, it lists columns marked as UNUSED as well as the 'active' table columns. There doesn't seem to be a field that explicitly says whether a column is UNUSED, or any view I can join to that lists the…
I'm not overly familiar with the SQL Server data dictionary, but I've assumed what I'm trying to do is possible.
We have a number of replicated databases, under different names say:
Client1
Client2
Client3
Rather than rely on a naming convention, I…