Viewing 15 posts - 1 through 15 (of 25 total)
Totally. thanks Adi and Flo, Thanks all who contributed.
Sorry again for my poor question post. will keep it clearer in future.
Allan.
April 9, 2009 at 4:37 am
BINGO!! :w00t:
Chris, you are da man!
This is perfect. 😀
Thank you.
Regards,
Allan.
April 9, 2009 at 3:28 am
The order of the PK is not important.
Heres a better example maybe:
DROP TABLE #GroupMembers
CREATE TABLE #GroupMembers (
Group_member_id INT,
Member_name VARCHAR(10),
Group_name VARCHAR(3),
...
April 9, 2009 at 2:42 am
Hi, been away so apologies for the delay in getting back to this.
Adi, are on the button with this.
The last bit is, I want to modifty the field called Order,...
April 8, 2009 at 5:02 am
Chris Morris (3/31/2009)
So the new sequence is the same ORDER as the old sequence, only starting at 1 and with no gaps?
Yup :w00t:
March 31, 2009 at 6:12 am
Hi,
Order is determined by the customer via the gui.
if the user adds a member to a group using the gui, the default order is the last order +1....
March 31, 2009 at 5:45 am
sorry, having a bad day. didnt think it posted first time. delete isnt working for me so cant remove duplicate. :crazy:
March 31, 2009 at 5:30 am
Apologies again. I'll be clearer in future.
Based on ChrisM's kind example, which was almost spot on, I've tweaked a few of the order values to demonstrate my problem.
DROP TABLE #GroupMembers
CREATE...
March 31, 2009 at 5:26 am
DROP TABLE #GroupMembers
CREATE TABLE #GroupMembers (
Group_member_id INT,
Member_id INT,
Group_id INT,
[Order] INT)
INSERT INTO #GroupMembers (Group_member_id, Member_id, Group_id, [Order])
SELECT...
March 31, 2009 at 5:19 am
lol, cant keep up. let me play and I'll get back to you with example.
March 31, 2009 at 5:04 am
Hi, please read my second post. The GUI sequence, and the order these members are contacted in, is in the Order field. not the PK fields. Sorry again, should have...
March 31, 2009 at 5:02 am
Sorry folks, I should have been clearer. :Whistling:
the sequence is in the Order field. no PK's being touched.
Group_member_id is the unique key, group_id, and member_id are refering to keys in...
March 31, 2009 at 4:45 am
The applications should be able to interact with any site and communicate with any other applications on other sites as if they were all being fed from the single location....
March 31, 2009 at 2:34 am
Noel,
Thanks for that. I think the location idea might have to be the one, as it would mean the least code changes in the application.
I'm thinking, based on what...
March 26, 2009 at 6:33 am
Fantastic article. many thanks.
I have a question.
I have a replicated table with a key field, lets call it 'Id'
Id is an identity field not for replication, which is...
March 20, 2009 at 6:42 am
Viewing 15 posts - 1 through 15 (of 25 total)