Viewing 7 posts - 1 through 7 (of 7 total)
Depending on your OLEDB privider, try using the Four Part Naming Convention.
LinkedServer.RDBSName.LibraryName.FileName
Example:
INSERT INTO LinkedServer.RDBSName.LibraryName.FileName
SELECT Column1, Column2, Column2, etc.
FROM SQLTable
December 15, 2006 at 7:37 am
You may want to use the CreateTableDef Method. There is a good example in ACCESS Help.
April 15, 2005 at 7:36 am
The answer: "Go to the Results tab under Tools and Options and set the Maximum Characters Per Column" is correct for MSSQL 7.0. If the question refers to a...
March 11, 2004 at 9:16 am
Check the following:
http://support.microsoft.com/default.aspx?scid=kb;en-us;309103
http://support.microsoft.com/default.aspx?scid=kb;en-us;310422
MMC V2.0 tends to loose SQL Server registrations when a network password is changed.
The SQL 7.0 msc is a V1 type so I have created a...
February 10, 2004 at 7:14 am
I use different DSN names for Dev, Tst, and Prod. For example: myDSN_Dev, myDSN_Tst, and myDSN_Prod. When an ACCESS.mdb is moved from one environment to the next, we have VBA...
February 6, 2004 at 6:57 am
Try using the CDate («date») function.
rst.Open "SELECT * FROM tblDeposits WHERE " _
& "CDate (uDate) BETWEEN '" & StartDate & "' AND '" & EndDate & "' " _
...
January 14, 2004 at 8:27 am
Viewing 7 posts - 1 through 7 (of 7 total)