When I use Import/Export feature of SQL Server 2000 to migrate SQL Server 2000 database to Oracle, SQL Server converts all table names to something like this:
"table name", instead of just table names without any quotes.
Because of this when the tables are successfully migrated to Oracle and when I run SQL Query, I have to use like this:
Select * from "table name"
instead of simply,
Select * from table name.
What's the problem? Why SQL Server includes double quotes with the table names and how to get rid of this?
"table name", instead of just table names without any quotes.
Because of this when the tables are successfully migrated to Oracle and when I run SQL Query, I have to use like this:
Select * from "table name"
instead of simply,
Select * from table name.
What's the problem? Why SQL Server includes double quotes with the table names and how to get rid of this?