Puedo crear dos tablas en mi oracle (11g) de la base de datos como este:
create table "test" ("id" int);
create table test ("id" int);
Luego, en mi programa de C# hay un problema :
OracleConnection conn = new OracleConnection(-myConnectionString-);
conn.Open();
OracleCommand command = new OracleCommand("select * from test;", conn);
var v = command.ExecuteReader();
OracleCommand command = new OracleCommand("select * from \"test\";", conn);
var v = command.ExecuteReader();
para ambos comandos.ExecuteReader() tengo una "ORA-00911: carácter no válido error".