ADP maybe will not stop people from linking to the SQL server but i can stop anyone from doing anything by not giving them access to the database and in turn use an APP ROLE to process the data in a controlled front end application.
I think your method is an excellent to secure the back end...
That tells me that you are using the forms to control security which works great. I did the same thing and worked beautifully when my database was in Access.
My new issue is that I need people to enter data specifically the way the form allows them to which is designed based on our processes...
Can anyone please advise on a security design to use Database Roles in SQL server 2008 when using MS Acess 2007 as a front end.
How can I integrated DB Roles into MS Access when the security use to be handled by the forms when the database was is Acsess?
I link the database through ODBC. I...
I have the following code that use to work fine when my front end was in a .ACCDB file. After I migrated the backend to SQL server I changed the fron end to a .adp file and now my code won't work. I get the following error message "Run-Time error 91". Can someone please help.
Sub GetDBUsers()...
Use this query sample:
SELECT
MARKET,
SUM(IIF(MARKET IN ('NY','NJ','PA'),Sales,0)) AS EastSales,
SUM(IIF(MARKET IN ('NY','NJ','PA'),Goals,0)) AS EastGoals
FROM
SampleTable
Group by
Market
Hope this helps.
Try the following code:
SELECT TOP 1 UpdateLiningStatus.MachineNumber, UpdateLiningStatus.TimeStamp
FROM UpdateLiningStatus
WHERE UpdateLiningStatus.MachineNumber="CLN33501"
ORDER BY UpdateLiningStatus.TimeStamp DESC
Hi everyone from Chicago. My name is Oscar and I have been programming fo 6 years of which 4 have been MS Access 2003 and 2007. I really enjoy this site and has helped me much in the past. Hopefully, I can share what I have learned here along with my experience to help others as well as to...