Forum: JavaScript / DHTML / AJAX Jan 24th, 2009 |
| Replies: 1 Views: 1,035 Hi,
I'm using this function to set "cart behavior" on my drag and drop control:
$create(
Dflying.ShoppingCartBehavior,
{"name": "myShoppingCartBehavior"},
null, ... |
Forum: MS SQL Jan 7th, 2009 |
| Replies: 9 Views: 931 RamyMahrous please SEE my example.
It's completely different from yours. |
Forum: MS SQL Jan 6th, 2009 |
| Replies: 9 Views: 931 Yes I have tried, but doesn't run. |
Forum: MS SQL Jan 5th, 2009 |
| Replies: 9 Views: 931 Hi,
I would like to know if it's possible to create a procedure, where we pass 2 arguments (the databases where the search must be done) and how to use those parameters in select clause
What I... |
Forum: MS SQL Jan 1st, 2009 |
| Replies: 10 Views: 1,029 Here the solution that I got from another forum:
SELECT ROW_NUMBER() OVER (PARTITION BY workID ORDER BY machineID) AS Seq,* INTO #Temp
FROM Table
DECLARE @MachineList varchar(1000),@Sql... |
Forum: MS SQL Dec 30th, 2008 |
| Replies: 10 Views: 1,029 Hi RamyMahrus,
my DB design is the following:
I have 3 tables:
- work (workID, description)
- machine (machineID, name)
- work_machine (machineID, workID, hours)
Can you tell me what's... |
Forum: MS SQL Dec 30th, 2008 |
| Replies: 10 Views: 1,029 Hi,
machine1 and machine2 are rows from machine table
The 0 represents that machine2 don't do any "A" work |
Forum: MS SQL Dec 30th, 2008 |
| Replies: 10 Views: 1,029 Ok, I think that I haven't explain myself.
In table "work_machine" I have:
workID | machineID | hours
A | M1 | 1
B | M2 | 3
B | M1 | 5
Now I would like to know how to make the query to... |
Forum: MS SQL Dec 29th, 2008 |
| Replies: 10 Views: 1,029 Hi there,
I'm completely lost.
I have 3 tables:
- work (workID, description)
- machine (machineID, name)
- work_machine (machineID, workID, hours)
What I want is to obtain a result similar... |