Hi Everyone,
I am using Import excel to DB smart service to import excel data in Appian. And my requirement if date column in excel is in any format then it should be changed to "dd/mm/yyyy" before inserting into DB. I dont see any option to format the dates in smart service. Can anyone please help me out?
Many Thanks!
Discussion posts and replies are publicly visible
You need to solve this using a stored procedure, run after the initial import, that transforms your data from a staging table into the final table.
Thanks ,
Could you please explain it a bit more. Do you have any sample procedure to transform data.
Thanks!
I do not have any example at hand, but there is tons of info on that matter in the internet.
Any suggestions, the date format in excel can be in any format and I need to convert to "dd/mm/yyyy" format.
Well, trying to parse "any" format is always tricky. But again, Stackoverflow is full of hints on how to implement such a stored procedure.