Viewing 9 posts - 16 through 24 (of 24 total)
Don't forget, Abdul said it was working then stopped. He never said he was using mapped drives. UNC is the correct way to connect but if the scheduled job was...
February 3, 2006 at 9:23 am
We had a similar problem with a DTS package that could be run manually but was not running when scheduled. Problem turned out to be a space issue on the...
February 3, 2006 at 8:04 am
Sorry, things got busy around here. By threshold limit I mean that we are now starting to see performance and speed issues, problems with memory resources on the server, queries...
July 26, 2005 at 7:52 am
I support an application that is a FE mdb linked to SQL Server through ODBC and currently we have anywhere from 150 to 200 concurrent users. We are starting to...
July 18, 2005 at 8:06 am
Actually you can use a UNC name to link a FE access mdb to a BE access mdb. I do this a lot. Is the FE mdb file installed on each...
July 15, 2005 at 3:51 pm
Access will not allow you to enter a invalid dates in a datetime datatype field so if your Access field is a datetime field you will not have any invalid...
October 11, 2004 at 7:43 am
You might also try this:
Select Left(Address,Len(Address) - CharIndex(' ',Reverse(Address)))
June 19, 2003 at 9:37 am
If you want to convert it to a mm/dd/yyyy format then use:
Convert(char(10),dteShipped,101)
This will take the datetime field dteShipped and convert it to a char(10) field in style format 101 which...
June 19, 2003 at 8:45 am
Another way to do it is:
Convert(char(8),dteShipped,1)
This will convert the date to a mm/dd/yy format.
June 19, 2003 at 8:35 am
Viewing 9 posts - 16 through 24 (of 24 total)