Viewing 15 posts - 1 through 15 (of 39 total)
Well, I have a number of thoughts. First of all, my guess as to why the upsizing wizard is incredibly slow is that you are running Access on your local...
December 14, 2006 at 6:21 am
It might be helpful if you posted the VBScript and/or the SQL so we could see what it's doing.
November 14, 2006 at 5:41 am
Perhaps another approach to using a join would be something like:
Select Info.Name from Info WHERE (Name.SSN IN (SELECT Customer.SSN from Customer)) OR (Name.SSN IN (SELECT OtherTable.SSN from OtherTable))
October 6, 2006 at 6:01 am
I just googled "ASP select sql" and lots of sites came up that seemed like they would help you. There are lots of forums that are more oriented towards ASP...
September 19, 2006 at 4:14 am
what I would do is some time when no one is using the database, go to one of the other workstations that can access the db and create a new...
September 1, 2006 at 4:36 am
I was going to suggest that if your stored procedure populates a table, use DoCmd.RunSQL to execute the stored procedure then you could export to Excel from the table.
Dick
August 30, 2006 at 5:11 am
I have basically done what you are talking about on the switchboard, as follows. The switchboard is set up normally with multiple switchboards (eg. Main, DeptA, DeptB, DeptC). When the...
August 11, 2006 at 5:08 am
Here is just a wild guess (probably wrong), but I was wondering if it could be security related. Perhaps when you run the SP the linked server knows it is...
July 25, 2006 at 4:19 am
Seems like you were asking for the last working day, not the last day. How about scheduling the job to run every day, and then run a proc that has...
July 6, 2006 at 2:25 am
I'm assuming that your back-end data is in SQL Server. If Discharged is a Yes/No field in Access you would just want to either have "AND Discharged" or "AND NOT Discharged"...
July 5, 2006 at 11:46 am
do you know where I could find a sample of doing that?
June 23, 2006 at 6:31 am
Oops - forgot you were in Access. More like
Nz(Field1) Like forms!searchform!Box1 & "*"
Dick
June 9, 2006 at 4:51 am
I use something like
COALESCE(Field1,'') LIKE COALESCE(Param1,'')+'%'
Dick
June 9, 2006 at 4:49 am
perhaps posting the SQL statement you are using would help someone find what's wrong. it also would be helpful to know the data types of the fields involved in the...
May 25, 2006 at 4:51 am
Viewing 15 posts - 1 through 15 (of 39 total)