Viewing 6 posts - 151 through 156 (of 156 total)
There is a VB application that uses that Access database. I need to run the query even with application running.
June 8, 2005 at 11:48 am
The Access file is not opened by any user. The path is correct and the server has access to the folder where the Access file resides.
June 8, 2005 at 11:40 am
In reply to Remi, here is the full code. I still get an error.
Declare @tbl table (RowId int identity(1,1), ItemName varchar(100))
Insert @tbl
Select ProductName
FROM Products
WHERE ProductName like...
May 16, 2005 at 3:11 pm
Good article.
Why do I get an variable declaration error with this statement -
Select * from @tbl INNER JOIN Products p ON @tbl.ItemName = Products.ProductName
May 16, 2005 at 2:32 pm
How do I reference the temp(#) table in the 'Destination' tab of the Transform Data Task properties ?
Am I missing something ?
May 5, 2005 at 9:47 am
If you have the 'Remove Files older than' option checked and if Sql server does not have permissions to delete, you could get this error.
March 18, 2005 at 6:37 am
Viewing 6 posts - 151 through 156 (of 156 total)