Greetings All,
It seems like I have created all of my datawindows in all of my applications using an SQL Login that has dbo rights.
So now we are trying to implement new SQL Logins without DBO rights and the tables appear as 'dbo.table_name' instead of 'table_name'. And the application does not work and I think it is because the datawindow cannot find 'table_name' because only 'dbo.table_name' is available.
Is there a workaround for this without me having to open the source of each datawindow in each application and doing a replace of 'dbo.' with ''?
Thanks!!
Paul
GRANT DELETE, INSERT, SELECT, UPDATE ON dbo.yable1 TO NewUser;