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 |
AskSQLTeam
Ask SQLTeam Question
0 Posts |
Posted - 2002-07-12 : 09:50:32
|
Dave writes "Anybody knows of a good resource for "generic" SQL Server User Defined Functions ?" |
|
robvolk
Most Valuable Yak
15732 Posts |
Posted - 2002-07-12 : 09:53:36
|
I posted this in the SQL Team Script Library forum, which has a number of examples of functions and stored procedures. It should give you a start.FWIW, the terms "generic" and "user-defined" functions tend to contradict each other. A generic function will most likely be a regular, pre-defined system function, like GetDate() or ABS(). A user-defined function would be custom-written to provide a function NOT available in the built-in function library.Edited by - robvolk on 07/12/2002 09:55:34 |
|
|
|
|
|