I've a little problem when i pass my parameter to my script pl/sql. I would pass a string with space. Because my pl/sql script treat the information in function of their position. So i've the same information a the same position, and the spaces provides the exact position of the information. So i can't change that.
But, when i pass my string, my pl/sql script "take" only the string until the first space. After is ommit.
For example, i pass 'Test1 Name Adresse Validation', but i've only 'Test1' in my database... It considere only 'Test1'.
How can i solved it ?
More information :
Sqlplus line command :
sqlplus -L %user%/%pwd%@%db% @C:\Hardis\NDL\SQL\MHUHMS.sql !l!
And to recup the value of my parameter in my pl/sql script :
l:='&1';
In my pl/sql script l is define like this : l NCHAR(2000);
Thank's