Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
somacdc
Contributor III
Contributor III

As a text through SQL

here is the desire data.

IDFOLIOS
168602
16861
1686105
16862
16863
16864

 

Load result is as follows after the following query:

HOLDERS:
SQL SELECT
"FOLIOS",
"ID"
FROM "POST"."HOLDERS";

IDFOLIOS
16861
1686105
16862
16863
16864

 

Please note that text(FOLIOS) is also used.

1 Solution

Accepted Solutions
somacdc
Contributor III
Contributor III
Author

After using preceding load. issue has been resolved.

Thanks for your kind support.

View solution in original post

4 Replies
pasi_lehtinen
Partner - Contributor III
Partner - Contributor III

Try to convert the field to text already in the SQL query part. The correct syntax depends on your database engine but with MS SQL Server you can either use cast or convert database functions.

somacdc
Contributor III
Contributor III
Author

Oracle database engine

pasi_lehtinen
Partner - Contributor III
Partner - Contributor III

Then you should use TO_CHAR() -function I guess.

somacdc
Contributor III
Contributor III
Author

After using preceding load. issue has been resolved.

Thanks for your kind support.