Henrique Miranda

Results 14 comments of Henrique Miranda

I tried doing the way you recommended but it returns the same error that I get if I don't specify the table name: Oracle - ORA-00942: table or view does...

I forgot to mention that no SQL commands are logged when I get this errors. I get SQL statements in logs from LINQ queries but not from context.BulkCopy. I only...

Logs are working, I just don't get any SQL logs when I run ctx.BulkCopy().

I had to use ``DataConnection.TurnTraceSwitchOn();`` but now SQL logs are shown: ``` info: LinqToDB[1] BeforeExecute -- Oracle Oracle11 INSERT ALL INTO "ST."FlatConsults"" (Day, RetailerId, RetailerTradingName, RetailerDocument, SaleCountCash, SaleCountCard, ConsultCountCash, ConsultCountCard)...

@Shane32 1. ``TableName = "ST.\"FlatConsults\""`` yields: ``...INTO "ST."FlatConsults"" (...`` 2. ``TableName = "FlatConsults"`` yields: ``...INTO FlatConsults (...`` 3. ``TableName = "FlatConsults", SchemaName = "ST"`` yields: ``...INTO ST.FlatConsults (...`` 4. Not...

I really don't have a link for it. I learned it while using OCI's (Oracle Cloud Infrastructure) SQL Developer Web. I tried the standard "SELECT * FROM FlatConsults" and it...

Looking at EF Core queries in the log, it does uses quotes with table names when running queries, but it does not uses the schema name in front of it:...

Yep, same problem: ```c# info: LinqToDB[1] BeforeExecute -- Oracle Oracle11 (asynchronously) DECLARE @take Int32 SET @take = 10 SELECT t2.Day_1, t2.RetailerId, t2.RetailerTradingName, t2.RetailerDocument, t2.SaleCountCash, t2.SaleCountCard, t2.ConsultCountCash, t2.ConsultCountCard FROM ( SELECT...

It might solve this. It actually states in it's description that it should be set to false. I'll test it and report back shortly. Edit: yep, that did it. Everything...

Sure! I'll try to providĂȘncias a release later today.