Viewing 15 posts - 46 through 60 (of 128 total)
I did try replacing all the instances of @OriginalText and put in the field name contact but i get the following errors:
CREATE FUNCTION ProperCase(contact)
RETURNS VARCHAR(8000)
BEGIN
DECLARE @CleanedText VARCHAR(8000)...
January 4, 2011 at 9:59 am
So much help now my head is spinning! Thanks
How do i declare @OriginalText to be an actual field that alread exists?
Thanks again.
January 4, 2011 at 9:42 am
Thanks for both the replies.
I really like that function. How do i declare @OriginalText to be an actual field that alread exists?
Thanks again.
January 4, 2011 at 6:47 am
No, just this table, it's not to make it relational, my requirements are simple I have a table that is relational to other tables but based on an already existing...
September 30, 2010 at 4:52 am
Thank you for your help but the answer that i needed was this so i help it helps someone else.
alter table yourtable
add autonumber int identity(1,1)
go
September 30, 2010 at 4:19 am
Thanks for this.
Could you do me a favour? I'm not getting my head round how this works.
The part of my query below is the bit that works out if...
August 11, 2010 at 8:23 am
Well this does not matter in this instance i know they are unique based on their stu_id and i just want their contact deatils to populate the wce_contact tables.
So...
August 11, 2010 at 7:38 am
I have just been checking the data and can see the query provided by malcolm.o-nions has duplicate rows, i think this is because the wce_ilr table can have multiple rows...
August 11, 2010 at 7:14 am
Thank you for your reply. I ran the select part of your script and it looks good but when i run the select on the script i posted the results...
August 11, 2010 at 2:58 am
Thanks for the reply, i will work through it and see if i can re-work this. Unfortunatly there is no direct link between the contact and sales table. To link...
August 9, 2010 at 6:40 am
Thanks Gail, i over looked all the detail and thought it was the same... Anyway worked perfectly, thanks for teaching me that.
July 30, 2010 at 9:36 am
Thanks for both the replies, i kind of see what your saying but if i try either of the following i still get all my rows updated. not jsut the...
July 30, 2010 at 7:43 am
Sorry, i copied the wrong query, this is the update query.
UPDATE wce_contact
SET user1 = 'prospect Bath'
WHERE EXISTS
(SELECT h.NOTES, c.user1
FROM ...
July 30, 2010 at 6:17 am
Viewing 15 posts - 46 through 60 (of 128 total)