Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
6k views

Is there a way to do full text search of all oracle packages and procedures?

I would like to search through all of my procedures packages and functions for a certain phrase. Since it is possible to retrieve the code for compiled procedures using toad I assume that the full ...
6
votes
0answers
178 views

Data Dictionary generators for PostgreSQL to Confluence Wiki

I'm looking for a tool that takes PostgreSQL tables and outputs a Data Dictionary in a wiki format (preferably Confluence). It seems like most tools out there require a lot of manual work/multiple ...
3
votes
3answers
1k views

How can you tell which columns are unused in ALL_TAB_COLS?

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 ...
3
votes
2answers
179 views

What are the Best Practices to follow while creating a data-dictionary?

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 ...
3
votes
1answer
3k views

Query SQL Server data dictionary to find all databases containing table 'x'

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 ...
2
votes
4answers
1k views

Text segmentation: dictionary-based word splitting

Background Split database column names into equivalent English text to seed a data dictionary. The English dictionary is created from a corpus of corporate documents, wikis, and email. The dictionary ...
2
votes
2answers
255 views

New Oracle Database

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: ...
2
votes
2answers
728 views

HUGE query execution time difference between oracle 10g and 9i

I'm running the following query: SELECT * FROM all_tab_cols c LEFT JOIN all_varrays v ON c.owner = v.owner AND c.table_name = v.parent_table_name AND c.column_name = v.parent_table_column ...
2
votes
1answer
40 views

Where is all_nested_table_cols in 9i?

Oracle 9i has nested tables, however it doesn't have the all_nested_table_cols sysview (like 10g and 11g) which lets me see what the columns are for these nested tables. How can I find this ...
2
votes
2answers
206 views

Table -> Function dependency via a virtual column not in all_dependencies?

I've got the following objects: CREATE FUNCTION CONSTFUNC RETURN INT DETERMINISTIC AS BEGIN RETURN 1; END; CREATE TABLE "FUNCTABLE" ( "ID" NUMBER(*,0) NOT NULL, "VIRT" NUMBER GENERATED ALWAYS AS ...
2
votes
5answers
575 views

What tools are available to document a legacy database schema (PDF, DOC, HTML, RTF)

I need to document a legacy database schema for a new employee and as there's no design document I'd like to generate one from the existing schema. As the tables are MyISAM the foregin key ...
1
vote
0answers
35 views

What is the best tool for building and maintaining Data Dictionaries in SQL Server?

What is the best practice around building and maintaining Data Dictionaries for SQL Server? I have been doing some research and I have found a couple tools which assist in the generation of Data ...
1
vote
1answer
86 views

Legacy databases from Hell [closed]

I'm a VFP developer that has just come of retirement to face a bunch of legacy apps from hell so any help/input would be much appreciated. It's a total of 14 different business apps running a mix of ...
1
vote
1answer
245 views

Generating data dictionary for SQL Server database

I am trying to generate a data dictionary for a table in my database. Ideally I would like to export the column names, data type, restrictions and extended property descriptions. How can this be ...
1
vote
0answers
90 views

integrated ERD and ETL tools?

I have a situation where I am inheriting several legacy databases and will be re-engineering them into a new combined database and further exporting data from there into several de-normalized data ...
1
vote
1answer
104 views

Select column_name from cols return nothing although column exists

i am trying to execute this statement in Oracle 9i. However it seems that the result set is empty although J am very sure that there are many columns with the name ID. select * from cols where ...
1
vote
1answer
543 views

How to bind a complex dictionary to a Gridview in asp.net?

I've used an early binding of a dictionary<string, string> to a gridview to show Urls Text and its HRef as key-value and it works like a charm. But since I want to replace the dictionary with ...
1
vote
2answers
364 views

What indexes are on the oracle data dictionary tables

How can I find out what, if any, indexes are set up on the oracle data dictionary tables themselves (eg on the columns of all_tables or all_source)?
1
vote
0answers
1k views

How can i generate a Data Dictionary Using Visio 2007

I have a database diagram in Visio 2007 and i want to generate a data dictionary of this diagram. Is there an easy way to do this? Thanks
0
votes
1answer
70 views

SQLite data dictionary tables and columns

Can you tell us the names of all tables and table columns in the SQLite data dictionary? Update: I was using this information for a Basic4Android app I'm developing. Here is the actual segment of ...
0
votes
1answer
23 views

How do you tell if a particular column is in a table?

I would like to know what query to use to determine if a particular table column exists in a given table. For example I would like to know if the column named Address_1 exists in the table named ...
0
votes
1answer
32 views

Hot to get stored procedure SQL text?

Is there any way to retrieve (and update) the actual stored procedure SQL text from a data dictionary? A sample use case for this would be to write a replacement tool for the Advantage Data ...
0
votes
1answer
111 views

What default system tables are available on Informix 9.53C1?

I'm looking for the data dictionary for Informix 9.53C1 system tables/catalog. I've found a couple sites that show some of these tables, but I couldn't find a full, comprehensive list of all system ...
0
votes
3answers
163 views

I need help creating a data dictionary for PHP/MySQL driven application

I am creating a property search/ comparison website. I require help creating the mysql tables that house the data. I am unsure how many tables I will need and what I should use for the column ...
0
votes
2answers
78 views

Data dictionary and reporting tools

My question is about reporting tools and the concept of Data dictionary. Is it necessary to use a Data dictionary in order to do good reports? and which tools use it? by tools i mean jasper reports, ...
0
votes
1answer
97 views

JDE Data Dictionary

JDE EnterpriseOne 8.98.4.1 Data Dictionary? I've used Databrowser to locate data items in F9210 - in this case Long Address data fields. Now how do I xref this field into tables, views, forms and ...
0
votes
2answers
86 views

MYSQL data files are compressed to gz

I have drupal website, the database is about 10GB. I was checking the datadir of my drupal database and found that some files are .gz!! why is this? and does it affect performance?? the website is ...
0
votes
0answers
69 views

Is there an ASP.NET based data dictionary generator available?

I'm looking for a web based application that can be installed on a server that will generate a data dictionary for various databases. I need something that will read the metadata from a SQL Server ...
0
votes
1answer
112 views

Where is all_queue_subscribers dictionary view on oracle 9i?

11g and 10g both have the all_queue_subscribers (and user_, dba_) dictionary tables for listing the subscribers to queues, but this doesn't exist on 9i. Does the same concept of queue subscribers ...
0
votes
1answer
178 views

How can I find the columns of a disabled index constraint?

For a normal index constraint, you can find the columns it is on by querying the all_ind_columns sysview using the index name in all_constraints. But if the constraint is disabled, no index exists, ...
0
votes
1answer
266 views

Data Dictionary Entries

I am in dire need of help on how to explain what a data dictionary record is... I've been on Google all night and couldn't find a thing. From a few investigations I was able to find some information, ...
0
votes
1answer
17 views

Is the dba_transformations dictionary view only accessible when you log in AS SYSDBA?

I'm trying to query the data dictionary to find information on the transformations in the database. I've given my user DBA privileges, so I can access the DBA_ dictionary views. With this user, I can ...
0
votes
2answers
693 views

Is there a dictionary or database of English words with each word separated by syllables?

I am looking for an existing database of English words with each word separated by syllables. My purpose is to further edit each word in any selected article based on the separation of syllables. ...
0
votes
1answer
1k views

Does index_id=0 in sys.indexes refer to the table itself?

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 ...