I am inserting some data into a table on different SQL server , for this purpose i have created a dtsx package ,
We need data in destination table in dd-mm-yyyy format and i am using below query to convert date into desired format
Convert(varchar,dbo.Member.DateOfBirth,105)
when run query in SSMS , it gives perfectly converted data as '25-08-1989'
but when i check it in destination table after insertion, it show date as '1989-08-25'
Can somebody tell me why destination table is not accepting date in dd-mm-yyyy format after conversion ?
I am new here , sorry for formatting mistakes ....