4
votes
2answers
34 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 a …
3
votes
3answers
586 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 ass …
2
votes
2answers
40 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 …
1
vote
1answer
441 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 sa …
1
vote
5answers
194 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 for …
0
votes
1answer
9 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. Wi …
0
votes
0answers
171 views
How can i generate a Data Dictionary Using Visio 2007
Hi,
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
2answers
246 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 separatio …
0
votes
1answer
296 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 tab …
