Viewing 15 posts - 31 through 45 (of 89 total)
DTS can run Visual Basic ActiveX Scripts. Have you considered converting your Access macro to VB Script?
April 11, 2005 at 9:10 am
Which internal functions? If you want help on this you'll need to be more informative. I understand that you may not wish to publish your code, but a brief overview...
April 11, 2005 at 5:52 am
That is basically what Wayne West is saying, but you will need to be careful for two reasons. Firstly, as Wayne states, it is not interactive and it will run...
April 11, 2005 at 3:32 am
The simple answer is no, but you can still run the Access subs/functions from your Form or Report, or better still rewrite them into a Stored Proc and get SQL...
April 8, 2005 at 3:15 am
I suffered the same problem as Kathi describes. In my case the problem was due to user finger trouble where they would mis-enter a date, e.g. 01/01/101 instead of 01/01/01...
January 24, 2005 at 4:05 am
As Frank states the EM method can be scripted, just remember to test the script on a backup of the production database before running on the live system, as in...
January 7, 2005 at 3:22 am
How about Bulk Copying the rows that you want to keep into a new table, then drop the old, rename the new, and run a script to recreate the relationships/triggers/etc....
December 30, 2004 at 2:34 am
Hi Rhys,
Have you also opened UDP port 1434, which SQL Server uses to establish communications links from applications? Also bear in mind that if you have installed the SQL Server as...
November 4, 2004 at 2:24 am
When I originally came across this problem I thought as you do, i.e. it shouldn't make a difference if you run the SET ANSI_NULLS ON within the procedure or outside. ...
October 5, 2004 at 3:22 am
The only thing that I can think of is that the other users haven't refreshed their EM table lists, etc. since your change.
September 21, 2004 at 3:39 am
How is your application accessing this table, e.g. ODBC, etc.?
September 21, 2004 at 2:12 am
I haven't tried exactly this my self, but the problem lies in that SQL needs it's BLOB data written in chunks, and MySQL may be the same. ODBC (DAO) and OLEDB...
September 15, 2004 at 2:54 am
If you add a full text index to your table you can use the CONTAINS command to pick out indiviual words.
See "Using the CONTAINS Predicate" in Books on...
September 9, 2004 at 3:13 am
Hi Cleech,
Try using a sub-query instead. For Example, in Access a query could look like:
August 16, 2004 at 2:08 am
Another possibility is to insert all records from the source into A, then insert into B joining the source with A to select the identity field. This method assumes that there is a way...
August 11, 2004 at 5:09 am
Viewing 15 posts - 31 through 45 (of 89 total)