Viewing 15 posts - 31 through 45 (of 73 total)
sturner (7/6/2010)
I recommend you use stored procedures to retrieve and update...
July 6, 2010 at 2:16 pm
Eric Mamet (4/26/2010)
I have the laptop with me and could do a few experiments.
The problem is "timeout" after about 35 seconds.
I tried without success...
July 6, 2010 at 1:06 pm
1. Where is SQLServer running? Is it on the same file server that the .mdb file was on or was it on another server? Is the other server located in...
July 2, 2010 at 10:39 am
ehamouda (5/7/2010)
i was able "after a long time of trial and error" to migrate access database to sql 2005 and use linked tables to access the sql backend from the...
July 2, 2010 at 10:33 am
ukarlink (6/30/2010)
Dim cnThisConnect As ADODB.Connection
Dim rcdCompanies As ADODB.Recordset
Set cnThisConnect = CurrentProject.Connection
rcdCompanies.Open "tblCompanies", cnThisConnect, adOpenKeyset, adLockOptimistic
rcdCompanies.AddNew
rcdCompanies![CompanyName] = "Winthrop Brewing Companies"
rcdCompanies![Address] = "155 Riverside Ave."
rcdCompanies![City] = "Winthrop"
rcdCompanies![StateOrProvince] = "WA"
rcdCompanies![PostalCode] =...
July 2, 2010 at 10:32 am
Its has an Access front end. When I was reading up on security yesterday, the articles that I read suggested that Application Roles required the password to be provided by...
June 18, 2010 at 9:38 am
Thx, I did figure out that I needed to grant execute permissions to the users. Right now, we only have 10-ish users so I've added them individually, but I'm now...
June 17, 2010 at 4:51 pm
Maybe I should spend more time at work doing work and less time at home doing work. Since I'm running SQLServer Express on my laptop, the server name and host...
May 20, 2010 at 1:43 pm
The permissions allow the person to look, buy, shop, refund, sell the store, trash it...
May 18, 2010 at 4:30 pm
This actually looks promising.
http://www.winblogs.net/index.php/2009/11/22/automating-backup-of-databases-in-sql-20052008-express/
May 15, 2010 at 9:21 pm
Thanks. Works like a charm. Now I just need to figure out how to output the results as a table that Access can use. (Thanks in advance for posting help...
May 5, 2010 at 5:51 pm
I'm not a SQLServer God & Guru by anymeans, but I'd be doing a lot of reading up on security to ensure that one user doesn't accidentally (or deliberately) screw...
May 5, 2010 at 5:49 pm
david.c.holley (10/7/2009)
Jeff Moden (10/7/2009)
david.c.holley (10/7/2009)
I just answered my own question...
Alter table contactuserids
Add constraint ix_WindowsUserId UNIQUE(WindowsUserID)
Alter table contactuserids
Add constraint ix_ContactId Unique(ContactId)
I just didn't know what the term was.
Keep in mind that...
March 19, 2010 at 9:45 pm
So its completely different from having a column (of any other data type) that stores the lat and a different on for the long as values. The geography data type...
March 17, 2010 at 5:23 pm
Viewing 15 posts - 31 through 45 (of 73 total)