Title here
Summary here
Returns a list of all tables in the currently connected database.
Make sure to connect with the correct permissions!
List<ETLBox.Helper.ObjectNameDescriptor> allviews = GetViewListTask.List();
foreach (var on in allviews) {
Console.WriteLine("Schema:" + on.UnquotatedSchemaName);
Console.WriteLine("ViewName:" + on.UnquotatedObjectName);
Console.WriteLine("Full qualified name:" + on.QuotatedFullName);
}
Runs sql code to determine all user database names.
Type | Description |
---|---|
List<ObjectNameDescriptor> | A list of all user database names |
Runs sql code to determine all user database names.
Type | Name | Description |
---|---|---|
IConnectionManager | connectionManager | The connection manager of the server you want to connect |
Type | Description |
---|---|
List<ObjectNameDescriptor> | A list of all user database names |