Viewing 15 posts - 76 through 90 (of 183 total)
I ran it again and got the following:
Msg 8117, Level 16, State 1, Line 1
Operand data type nvarchar is invalid for minus operator.
seems its data type related
August 12, 2008 at 6:49 am
Am still getting the same error message:
Msg 4145, Level 15, State 1, Line 5
An expression of non-boolean type specified in a context where a condition is expected, near 'ELSE'.
Msg 156,...
August 12, 2008 at 5:42 am
Got IT at last.
The subquery was far morw efficient than the Join, got more results than expected and there was no duplicate. Oooooooowwwwwwwweeeeeeeeeee!!!!!!!!!!
August 11, 2008 at 9:54 am
Am not very good with subqueries, thats why i tend to avoid it, is there a way you can guide me through?
August 11, 2008 at 8:56 am
The T_Items.AvailableLev <= 0 is the field within the table that informs end users of the available stock level “(back orders”- items where there is no stock available for shipping)
I...
August 11, 2008 at 7:53 am
These are the primary keys for the tables, and there are no constraints (sounds strange but thats they its set up)
T_OrderHeader - (PK, int, OrderID)
T_Payments -(PK, int, OrderID)
T_OrderLine -...
August 11, 2008 at 7:13 am
Thats right
Payments belong to a single order, with an Order having one or may stockIDs
August 11, 2008 at 6:53 am
Is it possible to have the for each loop container package to work on remote machines and servers?
August 8, 2008 at 10:43 am
It may sound stupid for an expert like you guys but would it be possible to list a step by step guuide on how to do this?
August 8, 2008 at 8:53 am
Hello All
I used the following query eventuallu without the DISTINCT keyword and it worked just fine:
SELECT CONVERT (NVARCHAR (20),T_OrderHeader.OrderDate,106) AS OrderDate, T_OrderHeader.OrderID, T_OrderHeader.CustomerID, T_OrderHeader.ShipTitle, T_OrderHeader.ShipForename,
...
August 8, 2008 at 3:35 am
I used the following query:
SELECT DISTINCT T_OrderHeader.OrderDate, T_OrderHeader.OrderID, T_OrderHeader.CustomerID, T_OrderHeader.ShipTitle, T_OrderHeader.ShipForename,
...
August 7, 2008 at 11:00 am
But how will it returns the list of countries not in the top 5 list?
August 7, 2008 at 3:55 am
Hello Lyn
Is there a way i can group the remaining countries as 'Others', so my end results will be the top and 5 and other countries?
August 7, 2008 at 3:22 am
Arghh, I see where I went wrong now!!!
Thanks for the guide
August 7, 2008 at 2:17 am
Viewing 15 posts - 76 through 90 (of 183 total)