Viewing 2 posts - 1 through 2 (of 2 total)
We're using this function
CREATE FUNCTION [dbo].[fn_ParseParam]
(@RepParam nvarchar(4000), @Delim char(1)= ',')
RETURNS @Values TABLE (Param nvarchar(4000))AS
BEGIN
DECLARE @chrind INT
DECLARE @Piece nvarchar(4000)
SELECT @chrind...
April 21, 2009 at 9:59 am
#981581
Is this article joke? Everything mentioned exists in SQL 2000 ...xp_fixeddrives backupset ,restorehistory etc..I used those features since 2000 came out.
April 27, 2007 at 10:21 am
#702996