Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
dmilam
Posting Yak Master
185 Posts |
Posted - 2010-04-14 : 16:51:39
|
| I get only "Command(s) completed successfully", not the string I'm trying to process and see the result of.USE T;-- Verify that the function does not exist.IF OBJECT_ID ( N'fn_Trim', N'FN' ) IS NOT NULL DROP FUNCTION fn_Trim;GOCREATE FUNCTION fn_Trim(@string VARCHAR(MAX))RETURNS VARCHAR(MAX)BEGINRETURN LTRIM(RTRIM(@string))END;GO/* Should return 'text' */EXEC T..fn_Trim @string = ' text ' |
|
|
hanbingl
Aged Yak Warrior
652 Posts |
Posted - 2010-04-14 : 16:57:58
|
func is fine, try select '|'+dbo.fn_trim(' text ')+'|'quote: Originally posted by dmilam I get only "Command(s) completed successfully", not the string I'm trying to process and see the result of.USE T;-- Verify that the function does not exist.IF OBJECT_ID ( N'fn_Trim', N'FN' ) IS NOT NULL DROP FUNCTION fn_Trim;GOCREATE FUNCTION fn_Trim(@string VARCHAR(MAX))RETURNS VARCHAR(MAX)BEGINRETURN LTRIM(RTRIM(@string))END;GO/* Should return 'text' */EXEC T..fn_Trim @string = ' text '
|
 |
|
|
dmilam
Posting Yak Master
185 Posts |
Posted - 2010-04-14 : 17:07:34
|
| Thanks; I getMsg 102, Level 15, State 1, Line 1Incorrect syntax near '.'.withselect '|'+T..fn_Trim(' text ')+'|' |
 |
|
|
Michael Valentine Jones
Yak DBA Kernel (pronounced Colonel)
7020 Posts |
Posted - 2010-04-14 : 17:31:54
|
quote: Originally posted by dmilam Thanks; I getMsg 102, Level 15, State 1, Line 1Incorrect syntax near '.'.withselect '|'+T..fn_Trim(' text ')+'|'
You might try running the command that was suggested by hanbingl:select '|'+dbo.fn_trim(' text ')+'|'CODO ERGO SUM |
 |
|
|
dmilam
Posting Yak Master
185 Posts |
Posted - 2010-04-14 : 17:42:44
|
| I did, and gotMsg 4121, Level 16, State 1, Line 8Cannot find either column "dbo" or the user-defined function or aggregate "dbo.fn_trim", or the name is ambiguous. |
 |
|
|
tkizer
Almighty SQL Goddess
38200 Posts |
|
|
dmilam
Posting Yak Master
185 Posts |
Posted - 2010-04-14 : 18:10:37
|
| That did it; thanks, Tara! |
 |
|
|
tkizer
Almighty SQL Goddess
38200 Posts |
|
|
|
|
|
|
|