Viewing 15 posts - 3,271 through 3,285 (of 5,103 total)
To re-create a stored procedure you will be better off using QA. To call it use the MS Access Passthrough query type!![]()
July 11, 2005 at 12:27 pm
I don't think so! ... Eagerly waiting to see what is the advantage ?
July 11, 2005 at 12:14 pm
I may not be an Access Monster
but i can tell you that you can call sp in Sql Server through a MS...
July 11, 2005 at 12:02 pm
Thanks for the feedback.
I know many people that use red-gate and this thread may be helpful to keep around ![]()
July 11, 2005 at 11:46 am
>>Certainly one 1-million row update is better than 1 million 1-row updates, but is it really THAT much better than 20 50,000-row updates or 100 10,000-row updates? I think there...
July 11, 2005 at 11:23 am
Sorry I had to do some stuff:
I need probably some sample data to give an adecuate solution but should be something like:
Update t Set dtLastInspectionDate = A.MaxDate,
dtNextInspectionDate =...
July 11, 2005 at 11:03 am
I think that if you need that MANY tables you'll need a different approach or your data will become unmanageable.
I will try any of the following 2 options.
1. Create...
July 11, 2005 at 9:54 am
I am sorry to be the BAD news guy here but that Trigger can't handle multiple records! ![]()
you should change the logic to a set...
July 11, 2005 at 9:41 am
thats why I don't like loops or cursors ... I use SET-BASED answers ![]()
July 11, 2005 at 9:26 am
Scott,
What is your problem with synchronous updates. SET-BASED updates beat the hell out of single updates no matter what method you use!
Lets make a quick comparisson:
The temp table is just...
July 8, 2005 at 3:58 pm
Paul,
If what you need is
>>
What I wanted was a quick and easy way of showing the results of a crosstab query on a sudden demand basis.
<<
then with Querydef.Open you...
July 8, 2005 at 3:18 pm
I am almost certain that it is possible to perform that formating client side without coding on most report writers!!! ![]()
July 8, 2005 at 3:02 pm
Let me get something clear,
#Temp Tables are unique per session! if you have several jobs #T1 for job1 is not the same than #T1 for Job2 even though they have the same name.
The...
July 8, 2005 at 2:38 pm
OOps!
Glad you solved it
Different than me but hey good for both of us then! ![]()
July 8, 2005 at 2:25 pm
I Was able to doit with the OLEDB Provider!
NO NEED for USE
You can use : the following connection string!
openrowset('SQLOLEDB',
'SERVER=XX;UID=XX;PWD=XX;DATABASE=XX',
'YOUR QUERY AS IS!!')
July 8, 2005 at 2:23 pm
Viewing 15 posts - 3,271 through 3,285 (of 5,103 total)