pdf - Create a file in SQL Server 2008 R2 and convert it to image datatype without writing it to disk? -
i working in sql server 2008 r2.
i generating pdf reports building pdf plaintext (based on this: http://www.sqlservercentral.com/articles/miscellaneous/creatingapdffromastoredprocedure/1104/ )
it builds body in plaintext saves folder using sp_oacreate
.pdf
extension. faster ssrs in case; generating 5k-100k pdfs (historical transaction data our customers' customers)
i have load these files image
column clients can access report through software.
is there way generate file , convert image
without writing disk , reloading it?
- i cannot change software, file must presented client when click button in interface.
- i cannot change database. have these files saved
image
datatypes. cannot change other data type. files less 20k in size. - i cannot implement filestream due pci compliance security reasons.
for sql server can program stored procedure on .net
language (c#, vb...) inside .net assembly
write code generating pdf reports. have execute stored procedure , save result database table.
Comments
Post a Comment