Ask a Question related to ASP Database, Design and Development.
-
Dave Karmens #1
Size in KB
I have two NTEXT fields that hold HTML data -- is there a way I could
display the size of the values in the fields in KB?
Dave Karmens Guest
-
display size on-screen differs from actual size.
With Illustrator 10 installed on Windows XP Pro with a Viewsonic 21" monitor at 16000 X 1200, the problem I am having is: The image I see on-screen,... -
How do I resize a document from Poster Size to Letter Size??
I designed a poster using ID CS (3.01) on a Windows XP platform. It is a single page document measuring 22" X 30", and I now need to print the same... -
media size versus crop size
We accept PDF files for the production of high resolution films from our imagesetter. We normally just drag the files to the appropriate folder on... -
CAN I CHANGE SIZE (PIXELS) OF A PROJECTOR TO REDUCE THE FILE SIZE?
as far as I know you would have to transform bitmap scale all bitmap members to the new size, then readjust their positions to score, and adjust... -
Cast Members Size Vs. Total Movie Size
What ultimately worked for me was to choose "Link to External File" in the media drop-down box within the importing dialog box when importing files.... -
Aaron Bertrand - MVP #2
Re: Size in KB
Why are they NTEXT? Are you requiring support for foreign alphabets?
Anyway you might have to divide this by 2 depending on whether you are
interested in eventual byte count or storage byte count.
SELECT DATALENGTH(column)/1024.00 FROM tablename
--
Aaron Bertrand
SQL Server MVP
[url]http://www.aspfaq.com/[/url]
"Dave Karmens" <spam_just1coder@yahoo.ca> wrote in message
news:eT6blsx9DHA.3436@tk2msftngp13.phx.gbl...> I have two NTEXT fields that hold HTML data -- is there a way I could
> display the size of the values in the fields in KB?
Aaron Bertrand - MVP Guest
-
Dave Karmens #3
Re: Size in KB
Aaron Bertrand - MVP wrote:
Yes.> Why are they NTEXT? Are you requiring support for foreign alphabets?
Ah. Thanks. That will work nicely.> Anyway you might have to divide this by 2 depending on whether you are
> interested in eventual byte count or storage byte count.
>
> SELECT DATALENGTH(column)/1024.00 FROM tablename
Dave Karmens Guest



Reply With Quote

