You can also use LPAD(your_value, 10, '0').
LPAD is an Oracle built in function and is used to Left PAD your_value to a length of 10 using '0' as its filler.
So, LPAD(19, 10, '0') will give you 0000000019.
You can use LPAD in any of your insert (or other) statements.