Viewing 15 posts - 106 through 120 (of 231 total)
Try using a pass-thru query in Access. This will force Access to execute the query in SQL Server's terms, not how Access would interpret the query.
September 13, 2004 at 9:25 am
Just remember that in Excel, you have a limit of 65,536 rows of data that can be inserted.
September 13, 2004 at 9:15 am
As an alternative, you can use pass-through queries in Access.
September 8, 2004 at 8:38 am
Depending on the error generated, it is probably an access issue -- the account that the SQL Server agent runs under does not have the proper privileges. What happens is...
September 3, 2004 at 8:49 am
It sounds like you've moved an Access database to SQL Server and now you need to gain access to the data via ODBC and set up a DSN (Data Source...
August 25, 2004 at 8:53 am
Check out the following article on http://www.SQLDTS.com
From the article...
To transfer local packages directly between servers follow the simple steps below:
1 Create a new package, and add two...
August 25, 2004 at 8:42 am
sp_helpuser and sp_helplogins are useful sys sprocs
August 24, 2004 at 9:07 am
Nice Tip -- This would be very useful in production processes and make it very easy to track down which specific task failed.
August 9, 2004 at 10:08 am
Yes, package logging is nice for troubleshooting. I normally add this to the DTS package as well as the job (if scheduled). This will provide start and end times as...
August 6, 2004 at 2:49 pm
You can execute a DTS package from within an ActiveX Script and then log what the results were of each step (log meaning write to a table). Then you can...
August 6, 2004 at 7:57 am
You can also execute a DTS package from within an ActiveX Script...
Function Main()
'Declare variables
Dim objPkg
'Create and...
July 23, 2004 at 8:17 am
I just wanted to clarify something with the UNION statement...
As Ganesh has correctly pointed out, using a UNION will automatically remove any duplicate records. Additionally, if the need ever arises,...
July 21, 2004 at 9:05 am
I'm only familiar with DTS. It is part of SQL Server. As for Ascential Datastage, never used it. It sounds like just another ETL tool. Hopefully someone else in the...
July 16, 2004 at 8:36 am
Yes, that would be an alternative approach, but I was hoping for more of a point and click solution. An input box would require the user to type out the...
July 16, 2004 at 8:32 am
I've looked at this from within Access to test the CDATE function and it does not like the YYYYMMDD format. It needs to have something like YYYY/MM/DD with the slashes...
July 15, 2004 at 2:49 pm
Viewing 15 posts - 106 through 120 (of 231 total)