Viewing 5 posts - 16 through 20 (of 20 total)
Thanks! I actually did go back thru and alter my proc to change the name, just for sanitys sake if nothing else.
Guess I'm still left with trying to solve...
June 23, 2003 at 6:18 pm
Still cant get around not declaring @oldimage as image in your example.
I tried the following addition;
INSERT INTO
SketchTable
(
intMasterAcctID,
intBuildingID,
imgSketch
)
VALUES
(
@intMasterAcctID,
@intBuildingID,
(Select imgSketch from SketchTable where intMasterAcctID=@intOldMasterAcctID and intBuildingID=@intOldbuildingID)
GO
error received:
Server: Msg 1046, Level 15,...
April 4, 2003 at 10:51 am
I'd look at Bill Wunder's DDL Archive Utility.
http://home.attbi.com/~bwunder/archive_installation.html
Awesome little utility that I was able to integrate into source safe with very little problems. I have it set...
March 24, 2003 at 12:54 pm
I've played with storing images in the database before in SQL2K. I basically have a web application that allows the user to select the image to load into the...
February 5, 2003 at 12:52 pm
hi there,
I figured that I would do the backup method. Backing up and restoring a 1.2gb database takes maybe a minute so that is going to be much quicker...
January 20, 2003 at 11:06 am
Viewing 5 posts - 16 through 20 (of 20 total)