Just some extract from the code:
cmd.CommandText = "SELECT TABLE_TYPE, TABLE_NAME FROM INFORMATION_SCHEMA.TABLES";
using (dataReader = cmd.ExecuteReader())
{
string tableName = (string)dataReader["TABLE_NAME"];
}
Should I use "table_schema" column of th INFORMATION_SCHEMA.TABLES like this:
dbo.string fullname = dataReader["table_schema"]+"."+dataReader["table_name"];
Or should I use another method? I need to insert this fullname in a script for insertion table data.