Interview Question in Data Transformation Services (DTS)
Interview Question :: I need to create a SQL Server Function to strip unwanted characters from a table
I am exporting data from a table to import into a nother database (MapQuest) In my database I have characters such as ' example Jim's Store the single quote in Jim's (') is causing the import to fail. Just like Unit "C" in the address field, the double quote causes it to fail.
I am exporting the data through a DTS package, the first step is to fire a stored procedure to grab the data and what I want to do is call a user defined function that will strip the data of any unwanted characters that I specify in the function when it grabs the data.

Loading ...