Viewing 7 posts - 1 through 7 (of 7 total)
You can do the same thing with sp_help 'tablename'
November 13, 2013 at 9:45 am
You should add the schema of the table. That would be better.
August 12, 2013 at 8:13 am
Here is a function to do the same thing:
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
Create FUNCTION [dbo].[fnParseStringTSQL]
(@string NVARCHAR(MAX),@separator NCHAR(1))
RETURNS @parsedString TABLE (string NVARCHAR(MAX))
AS
BEGIN
DECLARE @position int
SET...
November 2, 2012 at 1:25 pm
Great reports and very easy to set up... Great job and thanks!
December 20, 2010 at 9:54 am
Having issue when trying to run XP_sendmail in SQL Server 7.0 with an outlook 2003 client. Whenever I trun a test message it just hangs and hangs. Any ideas? Thanks
March 10, 2010 at 8:53 am
You could check Dundas software....
February 4, 2010 at 6:52 am
Viewing 7 posts - 1 through 7 (of 7 total)