Viewing 15 posts - 16 through 30 (of 36 total)
Hello,
A few questions to clarify things myself:
1. Is this an access autonumber variable from an Access table, or a SQL Server identity column?
2. How is the access to SQL Server...
February 5, 2011 at 3:02 pm
Hello,
The basic Jet SQL syntax for multi table delete with joins is:
DELETE
Table1 FROM Table1 WHERE EXISTS (SELECT t2 FROM table2 WHERE table1.t1 = Table2.t2) ;
You can add...
January 29, 2011 at 8:08 am
We use KeePass - an OSI certified password safe application (http://keepass.info).
November 7, 2010 at 8:56 am
Another thought - I can't really comment on file data sources, but I have plenty of experience with user (stored in profile) and system (stored in the windows registry under...
November 6, 2010 at 1:56 pm
Alt F11 to open the VBA editor, in the immediate window put:
? CurrentDb.Tabledefs ("dbo_Yourtable").Connect <ENTER>
this will display the connection information for the table "dbo_Yourtable" in the immediate window (use the...
November 6, 2010 at 5:53 am
Thanks Steve, now to post my question when I get a moment.
September 25, 2010 at 12:33 pm
When you set up your ODBC data source, did you use the 32 bit version of the ODBC driver administrator?
http://support.microsoft.com/kb/942976
For a 32 bit process it will need a...
September 24, 2010 at 1:20 pm
Configurable authentication for reporting services based around proper X.500 compliant LDAP (as used in eDirectory, OpenLDAP etc), without the need to get deep into .Net code development for a custom...
September 22, 2010 at 11:31 am
I'm not that familiar with VB.Net and ADO.Net but:
1. replace all occurrences of "paremeter" with "parameter"
2. replace all occurrences of "querry" with "query"
The SQL syntax looks correct, provided that parameters...
July 17, 2010 at 7:58 am
All SQL Servers have integrated security (you can't turn it off), it depends on whether the server your users are connecting to have permissions for the database(s) they need to...
June 25, 2010 at 3:48 am
An alternative method would be to set up a "virtual" FTP server using stunnel (www.stunnel.org) pointing to the remote sftp server, which you then connect using normal ftp uploads, and...
May 12, 2010 at 3:01 am
Effectively it means that any contract to store the data within a cloud or internet hosted environment would have to guarantee that the data would have to reside in a...
April 29, 2010 at 9:15 am
The EU directive on data protection (implemented in the UK as part of the Data Protection Act 1998) requires that personal data stay within a country in which the regulations...
April 29, 2010 at 4:33 am
ColdCoffee's code runs your stored procedure from your posting. It assumes it is in the same database as your code and has the same owner.
April 25, 2010 at 6:37 am
Set up a folder and file share on the DB Server for storing file attachments, ensure the SQL Server service account has read access to this folder.
As part of your...
April 24, 2010 at 10:23 am
Viewing 15 posts - 16 through 30 (of 36 total)