Viewing 15 posts - 106 through 120 (of 125 total)
Steve, you say to wait till 09:00 AM. The server time is now 12:39 AM. Is something wrong?
September 14, 2005 at 12:49 am
If you are willing to look at somebody from SA, let me know.
September 8, 2005 at 4:58 am
Maybe you will understand this syntax easier: You do not need grouping because of the sub-select.
update products
set qty = a.qty - (select sum(b.qty) from invoice_product b where b.product_id = a.product_id)
from products a
September 6, 2005 at 2:48 am
To summarize:
Create a Temp table with an autokey and the other fields you want to output. Then run : INSERT INTO TempTable SELECT Field, Field ... FROM MainTable ORDER BY...
August 24, 2005 at 12:45 am
Paul, you say you are worried about data traffic so just something to watch out for: I havn't used Access for about 3 years, but one of the things it...
August 10, 2005 at 12:27 am
I have taken your advice and tried different drivers like: MS OLEDB provider for Oracle, Oracle provider for OLEDB, MS ODBC Driver for Oracle and the Oracle ODBC Driver, but...
May 20, 2005 at 12:00 pm
Coincidence? I don't think so...
The datatypes are char (30) on both sides. My collation name on SQL is SQL_Latin1_General_CP1_CI_AS.
May 20, 2005 at 3:58 am
When you are using a temp table there is a way to do row by row processing without using a cursor:
DECLARE @key ....
SELECT TOP 1 @key...
April 13, 2005 at 4:08 am
If you got the error message by looking at the job history details, then you already know which dts package is causing the problem. The only way to determine which...
April 13, 2005 at 1:37 am
The package is run by the SQL Service Agent when it is fired from the scheduler. So you must check the rights of the SQL Service Agent.
Also, what SQL version...
April 13, 2005 at 12:41 am
I think DTS (Import objects) will be the best. Save the package because they might want to do it in the future again.
February 18, 2005 at 12:06 am
You can move the tables to sql and link them back to access. Your web pages will not see the difference. (Except maybe a little faster and more secure.)
February 17, 2005 at 11:54 pm
Of course, before you can do any of that, you need to install the Oracle Client software (The network portion) and using the Net Configuration Assistant, add a local net...
February 17, 2005 at 11:45 pm
Of course, before you can do any of that, you need to install the Oracle Client software (The network portion) and using the Net Configuration Assistant, add a local net...
February 17, 2005 at 11:45 pm
Of course, before you can do any of that, you need to install the Oracle Client software (The network portion) and using the Net Configuration Assistant, add a local net...
February 17, 2005 at 11:45 pm
Viewing 15 posts - 106 through 120 (of 125 total)