/** Kreis Lippe, Fachbereich 3 *** *** Joerg Burzeja *** *** MSSQL 2000 *** Ersetzt in Datensätzen in den Tabellen hebuch, buzahl, und bustell Anführungszeichen und Doppelpunkt, durch ein Leerzeichen, weil der Bereichswechsel-Wizzard Anführungszeichen und Doppelpunkt nicht verarbeiten kann, und an diesen Stellen in eine Exception läuft */ UPDATE hebuch SET tx1 = replace(tx1,'"',' ') WHERE tx1 like '%"%' GO UPDATE hebuch SET tx2 = replace(tx2,'"',' ') WHERE tx2 like '%"%' GO UPDATE hebuch SET tx1 = replace(tx1,':',' ') WHERE tx1 like '%:%' GO UPDATE hebuch SET tx2 = replace(tx2,':',' ') WHERE tx2 like '%:%' GO UPDATE buzahl SET tx1 = replace(tx1,'"',' ') WHERE tx1 like '%"%' GO UPDATE buzahl SET tx2 = replace(tx2,'"',' ') WHERE tx2 like '%"%' GO UPDATE buzahl SET tx1 = replace(tx1,':',' ') WHERE tx1 like '%:%' GO UPDATE buzahl SET tx2 = replace(tx2,':',' ') WHERE tx2 like '%:%' GO UPDATE bustell SET tx1 = replace(tx1,'"',' ') WHERE tx1 like '%"%' GO UPDATE bustell SET tx2 = replace(tx2,'"',' ') WHERE tx2 like '%"%' GO UPDATE bustell SET tx1 = replace(tx1,':',' ') WHERE tx1 like '%:%' GO UPDATE bustell SET tx2 = replace(tx2,':',' ') WHERE tx2 like '%:%' GO