Viewing 4 posts - 1 through 5 (of 5 total)
Has anyone found a solution to this.
We are experiencing exactly the same problem. I have ruled out recordets/sessions and any erroneous open connections by disabling all other websites except a...
January 25, 2006 at 1:14 pm
Another alternative post
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=8&messageid=160502#bm160753
Very similar to Franks link but variety is the spice of life .
February 23, 2005 at 1:51 am
You could try creating a UDF like the one below;
CREATE FUNCTION dbo.f_get_item_codes (@item nvarchar(256))
RETURNS VARCHAR(256)
AS
BEGIN
DECLARE @codes VARCHAR(256)
SELECT @codes = '' /*eliminating NULL value*/
SELECT @codes = @codes + it.code + ','
FROM...
February 10, 2005 at 1:28 am
Ideally this would be dynamic because its something I'm going to need alot in the future.
As a background the information is for an online directory taken from a print publication...
February 5, 2005 at 5:11 am
Viewing 4 posts - 1 through 5 (of 5 total)