Hi @ShaikMaheer-MSFT thanks for your suggestion but I am executing for more than 5 tables and for all the other tables it's working fine except for one table so it's not an access issue because all the other tables it's working fine.
and container name is also the same so there is no issue in the path as well.
but found the solution to this error the issue on the source side. Actually, i was using a query in which I have a date-casting statement and there was one row that not satisfied this statement but its raised an error on the sink(ADLS) side instead of the source side. This issue I want to highlight here.
below statement I was using in the where clause and source were MS SQL server:-
((DATEDIFF(DAY,convert(varchar,CONVERT (datetime,convert(char(8),CreateDate)),111)
,convert(varchar,CONVERT (datetime,convert(char(8),ExpiryDate)),111)))>92)
and the data that was creating problems was ExpiryDate='202300501'
Thanks