|
Comments
|
|
Excellent examples, quick and clear, thanks!
|
|
|
perfect timing! I'm just getting started with UDFs, and these videos are a godsend. The TSQL gods (and JumpstartTV) were smiling on me this morning.
|
|
|
nice
|
|
|
Thanks for pointing out the helpful "generate months" UDF!
|
|
|
Thanks.
|
|
|
great!!
|
|
|
Good
|
|
|
I really appreciate what you provide. These videos are very helpful indeed. The only thing I would improve on is the server bandwidth. It can be frustrating to have to wait several times during a video for the server to catch up.
|
|
|
Good examples. Thanks.
|
|
Dennis Allen on
8/25/2010
I would like to know more about the consequences of using implicit table definitions verses explicit.
-- example of what I mean when I say implicit
CREATE FUNCTION dbo.DateRange( @min date, @max date )
RETURNS TABLE
AS RETURN
(
SELECT N+1 AS id, DateAdd( day, N, @min ) AS value
FROM dbo.Tally
WHERE N BETWEEN 0 AND DateDiff( day, @min, @max )
)
|
|
|
Excellent video!!! I didn’t know about the grant select … public it’s good to know.
|
|
|
Terrific presentation with practical applications...
|