Viewing 9 posts - 1 through 10 (of 10 total)
Lowell - thanks for the code
I'll try to implement it later next week. I first need to skinny down the DB as I'm REAL close to that 4GB limitation...
July 8, 2010 at 8:58 am
I reorganized the indexes and the size wasn't affected. Looking deeper into the database I realised that each transaction had corresponding pictures of material in addition to ID's. ...
July 8, 2010 at 8:53 am
I finally got back to work on this deleting blobs issue. I figure I have less than a week to get it done.
My plan is to delete rows based...
July 8, 2010 at 7:57 am
Two good solutions - I'm leaning towards a table with the last run date with the max id at that time - that way I can schedule the run monthly...
April 1, 2010 at 12:54 pm
Jeff - the index is clustered. I'll probably try both methods & see what kind of space savings I get. We have to keep 30 days of ID...
April 1, 2010 at 4:43 am
Lowell,
Thanks for the code. I probably won't get to try it 'til next week or so - I'll be travelling a bit, but I'll let you know how it...
March 31, 2010 at 8:48 pm
What I actually need is sample code on how to either delete the selected rows or preferably how to delete the images in those rows.
Thanks,
Jim
March 31, 2010 at 4:53 am
Lowell, here goes (from MS SQL Server Management Studio Express)
USE [Images]
GO
/****** Object: Table [dbo].[tblCustomerImages] Script Date: 03/29/2010 17:26:07 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tblCustomerImages](
[ImageID] [int]...
March 29, 2010 at 3:34 pm
The table in question has the following columns:
ImageID
CustomerID
IDimage - blob
FaceImage - blob
I can figure out from the transactin DB the ImageID that I want as my starting point.
There are no...
March 29, 2010 at 11:42 am
Viewing 9 posts - 1 through 10 (of 10 total)