Hi.
I want get all tablelist.
plase...
I want get all tablelist.
I want list of TableNames in DB.
I want list of TableNames in DB.
Ex) adoConnection Component...
adoConnection.GetTableNames( lstTable, False);
I have ODAC 4.5.0.17.
Ex) adoConnection Component...
adoConnection.GetTableNames( lstTable, False);
I have ODAC 4.5.0.17.
We fixed this in ODAC 5.50. You can use TOraSession.GetTableNames function in ODAC 5.50. ODAC 4.50.0.17 have no such functionality. Please use the following query
Or use the next one for receiving all tables
Code: Select all
SELECT User || '.' || Object_Name Name
FROM User_Objects
WHERE Object_Type in ('TABLE', 'VIEW')
ORDER BY Object_Name;
Code: Select all
SELECT Owner || '.' || Object_Name Name
FROM All_Objects
WHERE Object_Type in ('TABLE', 'VIEW')
ORDER BY Object_Name