![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Hi All, I have a few linked Access tables I use as lists. I've learned that some users (by design) do not have access to the tables, and they are presented with the username/password challenge window. I have not been able to predict this, and so I've resorted to adding the following to my VBA code as a wrapper: If DFirst("ID", "LinkedSharepointList", "ID > 0") Then * *' Do what I was planning to do End If If the DFirst errors out, then I trap error number 3078. Unfortunately, this is 1-3 seconds. *And, because I have to do this to 7 tables, I have 20-30 seconds just seeing if the user can access the table. *And who knows if Access 2003 is gracefully opening and closing these connections in the background. I've tried DMax and DMin too. *Same speed. Is there a "HasSecurityClearance" function? *Or a "DFast" that will do a much quicker check? Thanks, Jon |
#3
| |||
| |||
|
|
SharePoint is slow as fuck. I wouldn't reccomend using it for any reason. If you want performance, throw away Jet and just use Access Data Projects |
#4
| |||
| |||
|
|
SharePoint is slow as fuck. I wouldn't reccomend using it for any reason. If you want performance, throw away Jet and just use Access Data Projects |
#5
| |||
| |||
|
|
"a a r o n . k e m p f @gmail.com [MCITP: DBA]" *wrote in messagenews:fa0accc0-295b-4510-b65e-39c2f1a432dc (AT) k3g2000prl (DOT) googlegroups.com... SharePoint is slow as fuck. I wouldn't reccomend using it for any reason. If you want performance, throw away Jet and just use Access Data Projects Actually, the above is not always true. In fact, if you using linked tables to SharePoint vs SQL server, with Access 2010 those tables are local JET tables, and you can run a report on a 50,000 record table at local non split database speed. In this scenario Access + SharePoint runs absolute circles around the same setup with sql server over the internet. So, in fact, in many cases not only is this setup faster then a sql server setup with Access, but you have full speed local processing without needing to transfer records over the internet. This "off line" sync approach works very well and as noted is often FAR faster then SQL server. In addition this type of setup can handle wif or cases in which even a temp break in the internet connection occurs. So in fact, not only is this faster then sql server, but attempting to use an ADP application to connect to sql server over the internet does not take well AT ALL to small breaks in the connection. In the case of Access + SharePoint those breaks in connection do not matter, and SharePoint is thus not only faster for reporting, but also far more solid and reliable when using the internet. Just in case you new to computers, there is this "new thing" called the internet! -- Albert D. Kallal (Access MVP) Edmonton, Alberta Canada Pleasenospam_kal... (AT) msn (DOT) com |
#6
| |||
| |||
|
|
Albert - I am interested in using Access with Sharepoint for a multi user environment. Will an Access with Sharepoint maintain data integrity? If so, where can I find more information on the specific use of Access with Sharepoint so I can set this up? Steve |
#7
| |||
| |||
|
|
attempting to use an ADP application to connect to sql server over the internet does not take well AT ALL to small breaks in the connection. |
![]() |
| Thread Tools | |
| Display Modes | |
| |