Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Where EmployeeName='D'souza';
The single quote in the name is causing the problem. Try adding an extra single quote to 'escape' it:
Where EmployeeName='D''souza';
Another thing you can try is using a variable:
SET vEmployeeName = D'souza;
Load Stuff From SomeTable Where EmployeeName = '$(vEmployeeName)';