Hello
Is there a way so that LLBL doesnt query like this
select * FROM database.dbo.table
and do this instead
select * FROM dbo.table directly
i think having the database name could be a problem in performance always , plus makes the size of the text sent from the application to the SQL server bigger also , imagine query with 5 tables and we always use the database name , now imagine 10000 queries per minute ,thats a great deal of text .
Any help is appreciated .