|
fabulous Charles - thank you
Jay
On Tue, Apr 16, 2024 at 11:37 AM Charles Wilt <charles.wilt@xxxxxxxxx>
wrote:
If the data is already trimmed,have
%len(%trimr(i_5000000))
Wastes time re-calculating the size...at least I think it would. I'd
to check to make sure.charles.wilt@xxxxxxxxx>
%len() of a VARCHAR field just returns the current length value stored in
the initial (2 or 4) bytes.
So only if it's larger than normally expected, would I do the trim.
OTOH, if as you said you never want to store the padding, then just
g_clob_len = %len(%trimr(i_5000000));
The wasted time might not be enough to matter, especially if you'd rather
waste time than space.
Charles
On Tue, Apr 16, 2024 at 9:20 AM Jay Vaughn <jeffersonvaughn@xxxxxxxxx>
wrote:
I don't understand that code Charles...
why not trim if <= 64000?
I'd probably do
if %len(i_5000000) <= 64000;
g_clob_len = %len(i_5000000);
else;
g_clob_len = %len(%trimr(i_5000000));
endif;
On Tue, Apr 16, 2024 at 11:17 AM Jay Vaughn <jeffersonvaughn@xxxxxxxxx
wrote:
correct - in no situation do we want padded blanks
Jay
On Tue, Apr 16, 2024 at 11:16 AM Charles Wilt <
thewrote:caller
Jon's correct in that I overthought this as far as g_clob_data..
This is indeed all that should be there..
g_clob_data = i_5000000;
However, I'd argue about g_glob_len...
Given Jay's description of the purpose, I'd argue that allowing the
to include blanks is not valid and a waste of space and that I as
ofowner
of the procedure do not want to allow that.
I'd probably do
if %len(i_5000000) <= 64000;
g_clob_len = %len(i_5000000);
else;
g_clob_len = %len(%trimr(i_5000000));
endif;
Charles
On Tue, Apr 16, 2024 at 9:02 AM Jon Paris <jon.paris@xxxxxxxxxxxxxx
wrote:
As Charles has pointed out the Trims here are pretty much a waste
andtime
if the varchar was loaded correctly (i.e. via a %TrimR).
Also in the rare event that the caller _wanted_ trailing spaces
willhad
set the field up accordingly then this code would remove them.
dcl-pi
i_5000000 varchar(5242880) CONST;
end-pi;
dcl-s g_clob sqltype(clob:5242880) static;
g_clob_data = %TRIMR(i_5000000);
g_clob_len = %len(%TRIMR(i_5000000));
In fact the code should just be:
dcl-pi
i_5000000 varchar(5242880) CONST;
end-pi;
dcl-s g_clob sqltype(clob:5242880) static;
g_clob_data = i_5000000; // Trim is pointless as the compiler
butjustexcept
add back blanks to pad g_clob_data anyway
g_clob_len = %len(i_5000000); // Again the trim does nothing
charles.wilt@xxxxxxxxx>waste time
Jon P.
On Apr 16, 2024, at 10:50 AM, Charles Wilt <
increasetrimmed...wrote:
Thinking about it...
While the %TRIMR() should be a no-op if the data is already
I don't think %LEN(%TRIMR()) would be...%TRIMR()...or
Depending on how often this is called, I might get rid of the
only do them if the %LEN() is larger than the 64k expected.
But the change to CONST and the use of STATIC will greatly
outcharles.wilt@xxxxxxxxx>the
performance compared to the original.
Charles
On Tue, Apr 16, 2024 at 8:21 AM Charles Wilt <
wrote:
Since g_clob_data is CHAR(5242880)
The %LEN(g_clob_data) is always 5242880, so yep you're writing
thenblanks.
You should use %LEN(i_5000000);
But even there, if the data is passed in with trailing blanks,
yep
you're getting 5MB written out.
A quick fix would be to add OPTIONS(*TRIM) to the parameter,
createdthatorigin
would require a recompile of callers.
You could also add %TRIMR(), but you'd end up doing so twice...
Personally, I'd prefer to ensure the data is trimmed at the
valueand
then pass in as CONST instead of VALUE instead of copying the
to
the
stack.
Also, I'd define g_clob as STATIC, to keep from having it
areand%TRIMR()
deleted (and INZ) for every call.
I might take a boots and suspenders approach, including a
first....
ifjeffersonvaughn@xxxxxxxxx>
the data is already trimmed it should be a no-op.
dcl-pi
i_5000000 varchar(5242880) CONST;
end-pi;
dcl-s g_clob sqltype(clob:5242880) static;
g_clob_data = %TRIMR(i_5000000);
g_clob_len = %len(%TRIMR(i_5000000));
insert into table(myClob)
values (:g_clob);
Charles
On Tue, Apr 16, 2024 at 7:38 AM Jay Vaughn <
charles.wilt@xxxxxxxxx>wrote:
we have a procedure...
dcl-pi
i_5000000 varchar(5242880) value;
end-pi;
dcl-s g_clob sqltype(clob:5242880) inz;
g_clob_data = i_5000000;
g_clob_len = %len(g_clob_data);
insert into table(myClob)
values (:g_clob);
thoughts?
Jay
On Tue, Apr 16, 2024 at 9:31 AM Charles Wilt <
wrote:
If you have RPG code writing out the table, I'd look there
jeffersonvaughn@xxxxxxxxx
Make sure the RPG code is properly handling the varchar data.
Charles
On Tue, Apr 16, 2024 at 7:00 AM Jay Vaughn <
response
wrote:
So Charles,
We have a table developed to hold a request clob (5mb) and a
clob
(5mb) ONLY for storage and auditing purposes.
Not to run queries against.
We have been finding out that some off platform load tests
theDASDtablebeing
performed and even though the api calls to put rows in this
should
have 1mb or less requests/responses, we are maxing out the
onsee
dominatingthat
test box and this table ends up with 821G of data.
Again our requests/responses should be well under 1mb each.
So is this table just a bad idea or are we simply over
the
box
with our load test volume?
Next time this happens I really want to look at the rows and
theconcern.what
jeffersonvaughn@xxxxxxxxxthese
columns have in them.
thanks
Jay
On Mon, Apr 15, 2024 at 6:51 PM Jay Vaughn <
wrote:
Thanks Charles.
I’lllook into the allocate but big relief on the storage
charles.wilt@xxxxxxxxx
Jay
On Apr 15, 2024, at 5:44 PM, Charles Wilt <
wrote:
Nope...
variable length data is stored in the overflow section of
inI/Os.table...
Downside of that is that when you read the row, it takes 2
take aOne
for
the row space and one for the overflow.
If you were mostly writing less that 32k, I'd tell you to
look
at
the ALLOCATE clause. That does cause space to be reserved
needs 1the
standard
table space. Which wastes space, but then the data only
consistI/O
to
jeffersonvaughn@xxxxxxxxxbe
read.
Charles
On Mon, Apr 15, 2024 at 2:20 PM Jay Vaughn <
wrote:
Let’s say I have a table with a 5mb clob column.
Most of my transactions that write to the table mostly
muchof
64k
and
less chars written to the clob but we want to reserve the
higher
storage allocation for when we need it
When the 64k chars are written to that clob on the row,
archives(MIDRANGE-L)entire
5mb
of
storage is not written to disk is it??
Tia
Jay
Sent from my iPhone
--
This is the Midrange Systems Technical Discussion
https://lists.midrange.com/mailman/listinfo/midrange-lmailing
list
To post a message email: MIDRANGE-L@xxxxxxxxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit:
or email: MIDRANGE-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the
archives(MIDRANGE-L)subscriptionat https://archive.midrange.com/midrange-l.
Please contact support@xxxxxxxxxxxxxxxxxxxx for any
related
questions.--
This is the Midrange Systems Technical Discussion
https://lists.midrange.com/mailman/listinfo/midrange-lmailing
list
To post a message email: MIDRANGE-L@xxxxxxxxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit:
or email: MIDRANGE-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the
(MIDRANGE-L)subscriptionat https://archive.midrange.com/midrange-l.
Please contact support@xxxxxxxxxxxxxxxxxxxx for any
related questions.--
This is the Midrange Systems Technical Discussion
https://lists.midrange.com/mailman/listinfo/midrange-lmailing
list
To post a message email: MIDRANGE-L@xxxxxxxxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit:
(MIDRANGE-L)subscriptionor email: MIDRANGE-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives
at https://archive.midrange.com/midrange-l.
Please contact support@xxxxxxxxxxxxxxxxxxxx for any
related
questions.--
This is the Midrange Systems Technical Discussion
https://lists.midrange.com/mailman/listinfo/midrange-lmailing
list
To post a message email: MIDRANGE-L@xxxxxxxxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit:
subscriptionsubscriptionor email: MIDRANGE-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives
at https://archive.midrange.com/midrange-l.
Please contact support@xxxxxxxxxxxxxxxxxxxx for any
subscriptionmailingrelated
questions.--
This is the Midrange Systems Technical Discussion (MIDRANGE-L)
list
To post a message email: MIDRANGE-L@xxxxxxxxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: https://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives
at https://archive.midrange.com/midrange-l.
Please contact support@xxxxxxxxxxxxxxxxxxxx for any
mailingrelated
--questions.
This is the Midrange Systems Technical Discussion (MIDRANGE-L)
list
To post a message email: MIDRANGE-L@xxxxxxxxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: https://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives
at https://archive.midrange.com/midrange-l.
Please contact support@xxxxxxxxxxxxxxxxxxxx for any
mailingmailingrelated questions.
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L)
list
To post a message email: MIDRANGE-L@xxxxxxxxxxxxxxxxxxrelated
To subscribe, unsubscribe, or change list options,
visit: https://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives
at https://archive.midrange.com/midrange-l.
Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription
questions.--
This is the Midrange Systems Technical Discussion (MIDRANGE-L)
relatedlistrelatedlist
To post a message email: MIDRANGE-L@xxxxxxxxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: https://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives
at https://archive.midrange.com/midrange-l.
Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription
--questions.
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing
To post a message email: MIDRANGE-L@xxxxxxxxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: https://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives
at https://archive.midrange.com/midrange-l.
Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription
listquestions.--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing
To post a message email: MIDRANGE-L@xxxxxxxxxxxxxxxxxx--
To subscribe, unsubscribe, or change list options,
visit: https://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives
at https://archive.midrange.com/midrange-l.
Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription related
questions.
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@xxxxxxxxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: https://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives
at https://archive.midrange.com/midrange-l.
Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription related
questions.
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.