Tagged Questions
The system-views tag has no wiki summary.
2
votes
2answers
297 views
Find package global variables from data dictionary
I have a package:
CREATE PACKAGE my_pkg
IS
g_var NUMBER;
END;
/
Is there any way I can query SYS views, to find that this package has this global variable? I'm interested in explicit variable name ...
2
votes
3answers
80 views
1
vote
1answer
41 views
Is is possible to find an equivalent Login in a 2nd database via a single query?
A database-level Login can be associated with zero to one server-instance-level Logins. And if it exists, that in turn can be associated with zero to one database-level Logins on another database.
...
0
votes
1answer
75 views
Missing Full Text Index System View In Sql Server 2008
I've been reading about the system view: sys.dm_fts_index_keywords_by_document
on msdn but can't find the view in my 2008 database. Anyone know if it should be there by default?
0
votes
3answers
146 views
Can you have relationships to system tables/views?
Is it possible to have a relationship from a user table to a system table view? To give context, I would like the values of a column in one of my tables to be restricted to the column names of another ...
0
votes
2answers
640 views
System views in MySQL
I'm using system catalog views such as SYS.ALL_ OBJECTS, SYS.FOREIGN_KEYS etc. to get information about my database structure in MS SQL 2005.
Are there equivalent functions/views for MySQL (v. 5) ...
0
votes
4answers
375 views
Where are seed_value and increment_value for IDENTITY columns?
I'm collecting metadata using the sys.* views, and according to the documentation, the sys.identity_columns view will return the seed and increment values like so.
CREATE TABLE ident_test (
test_id ...