Do you know if there's a quick way in sql server (via transact-sql) that I could trim all the database string fields.
|
|
No cursors. Copy and paste the output. Works also for SQL 2000, which doesn't have varchar(max). This can be easily extended to add a GO line to the end of each UPDATE if desired.
|
|||
|
|
|
Your question is a bit vague but is this what you are after?
That will remove both leading and trailing spaces from all values in the 'mycolumn' column in the 'mytable' table. |
|||
|
|
|
loop over information_schema.columns and RTRIM the varchar/nvarchar columns by creating the update statement dynamically |
|||
|
|
|
If anyone knows how to do this without a cursor, please post it:
|
|||
|
|
|
Just make sure you are doing a trim on VARCHAR string fields, not CHAR fields :) That wouldn't do much good. |
|||
|
Thanks guys, Entaroadun code worked pretty well for me, I just had to do some small changes to my requierements, and also I had to reset @colum_list on each iteration.
|
|||
|
|
|
-- V Quick and Dirty ! -- If this is to generate code to run on a single table, run this code with text output ; set nocount on declare @table nvarchar(100) select @table = 'YourTableHere' SELECT 'UPDATE ' + @table + ' SET ' SELECT '[' + Column_Name + '] = ' + 'LTRIM(RTRIM([' + Column_Name + '])), ' FROM INFORMATION_SCHEMA.Columns WHERE Table_Name = @table AND Data_Type LIKE '%CHAR%' -- Run as text output (Query/Results To... Results To Text -- Copy and paste the text output (excluding the last comma) into a new query window, and run it . |
||||
|
|
|
OK, that was quick and dirty but i have been sufficiently motivated by a current project to do this 'properly' - and with no cursors either, but a little sql concatenation trick. Does use dynamic sql though -- exec spGenerateTrimStatements 'StaticImportMaturities'
ALTER PROCEDURE spGenerateTrimStatements
(
@TableName NVARCHAR(100)
)
AS
DECLARE @Cr char(2),
|
|||
|
|