Viewing 12 posts - 1 through 12 (of 12 total)
Thanks Howard.
I have located the stored procedure and will give the TRY....Catch a whirl.
Cheers...Steve
March 31, 2011 at 7:26 am
Just re read reply :doze:
The column is ntext purely because we do not know how the application will react if we changed it.
Which is a real pain for me.
There is...
December 22, 2010 at 9:23 am
Hi Sean,
just seen reply as I posted thanks, we have come to the same answer and it worked.
I join the table to itself to limit the amount of rows it...
December 22, 2010 at 9:19 am
Not sure why, but changed varchar(max) to nvarchar(max) and it all worked fine...will check it out in BOL
December 22, 2010 at 9:14 am
CELKO (10/18/2010)
(emp_id CHAR(10) NOT NULL
REFERENCES Personnel(emp_id),
objective_nbr INTEGER NOT NULL,
PRIMARY KEY (emp_id, objective_nbr),
objective_description VARCHAR(1000) NOT NULL,
objective_status CHAR(5) NOT NULL ...
October 19, 2010 at 2:38 am
GSquared (10/15/2010)
Is there a reason that the incrementing number needs to be stored in the database? Can you store a datetime...
October 18, 2010 at 2:10 am
Ok thanks I will check that out. I did not know that the identity column could be based on a group of records with the same foreign keys. I thought...
October 11, 2010 at 11:07 am
Wayne,
thanks for the follow up. You are so right.
I have just had to take on some of the Accounts stuff and I have been so concerned with understanding the terminology...
August 31, 2010 at 9:10 am
Thanks for the replies guys, most helpful.
I have used a little bit of each suggestion and come up with a solution.
I have no access to the presentation layer so...
August 31, 2010 at 5:08 am
Looks like I may be a bit premature with my question. I am going to have a go at it using SSIS and fuzzy lookup, looks like it may be...
March 23, 2010 at 6:45 am
thanks Ian helped a lot.
ended up with this, if it is of any intrest.
update tbl_out_test set job_number =
(select substring(location,((dbo.CHARINDEX2('\', location,4)+1)),
((dbo.CHARINDEX2('\', location,5)) - ((dbo.CHARINDEX2('\', location,4))+1))))
where job_number =''
September 18, 2009 at 7:20 am
Viewing 12 posts - 1 through 12 (of 12 total)