Viewing 15 posts - 46 through 60 (of 147 total)
Cadavre (9/27/2011)
Charlottecb (9/27/2011)
I'm having a problem constructing a SQL Server 2008 stored procedure and any help would be gratefully received...
A bit of background info...
I have a list of contractors...
September 27, 2011 at 7:36 am
Elliott Whitlow (9/22/2011)
If you chose to use the code from codeplex and have any trouble let me know, I am the author.CEWII
Thanks Elliot:-D
September 22, 2011 at 2:17 pm
Elliott Whitlow (9/22/2011)
A trigger to do the work could easily cause unnecessary waits in the application. I would probably use the trigger to write an...
September 22, 2011 at 12:28 pm
Sean Lange (9/22/2011)
Charlottecb (9/22/2011)
Sean Lange (9/21/2011)
September 22, 2011 at 8:50 am
Lowell (9/22/2011)
this has worked correctly on all 5 of my tables which happen to have picutres/images in either image datatypes or varbinary(max) datatypes.
i could correctly guess...
September 22, 2011 at 8:49 am
Sean Lange (9/21/2011)
September 22, 2011 at 1:45 am
Lowell, Thanks for your continued responses.
After doing a bit of googling, this is what I've put into an insert trigger on the table...
DECLARE @folderPath VARCHAR(MAX)
SET @folderPath = 'C:\' --...
September 21, 2011 at 3:16 pm
Lowell (9/21/2011)
Charlottecb (9/21/2011)
September 21, 2011 at 2:42 pm
Sean Lange (9/21/2011)
September 21, 2011 at 2:16 pm
Lowell (9/21/2011)
you can use it as a model if you have the file name and binary data...
September 21, 2011 at 2:06 pm
I don't have the filename with it, I will generate the filename. The varbinary data will always be in the same format. I am trying to acertain what image format...
September 21, 2011 at 2:03 pm
Hi, thanks for the response. I have no control over the original dumping of the varbinary data - it' done by an external system which I have no control over.
September 21, 2011 at 2:00 pm
Ahh, I'm with you now - yes, that's very clever and a lot simpler to maintain in the future. I'll have a go implementing it your way.
Many thanks.:-)
September 13, 2011 at 2:19 am
Hi, thanks for the calendar code, however, I'm not sure how this will help me.
I've got it working I think using a nasty Case statement.
I would welcome comments on this...
September 12, 2011 at 12:11 pm
stewartc-708166 (1/24/2011)
DECLARE @StrStart NVARCHAR(MAX), @StrFin NVARCHAR(MAX) = '', @RecordCount INT = 0
SELECT @StrStart = '123.89;1400;107;-1.98;124.9001;103.67;12;-40;'
WHILE DATALENGTH(@StrStart) > 0
BEGIN
SELECT @StrFin += LEFT(@StrStart, CHARINDEX(';',@StrStart)-1),
@StrStart =...
January 24, 2011 at 8:31 am
Viewing 15 posts - 46 through 60 (of 147 total)