Viewing 15 posts - 3,826 through 3,840 (of 5,588 total)
Hi Parthi,
This is actually pretty easy to do... once you understand how to do it 😀
First, you need to put the data into something with an XML data type. In...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 8, 2010 at 8:30 am
Excellent article. The only thing I think would have been nice to add (and which has been covered in this discussion forum) is how to pass the data into the...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 8, 2010 at 7:41 am
Duncan Pryde (7/8/2010)
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 8, 2010 at 5:53 am
select name
from sys.objects
where type IN ('IF', -- SQL_INLINE_TABLE_VALUED_FUNCTION
'TF',...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 7, 2010 at 7:47 pm
crossmj (7/7/2010)
It took me awhile to understand this message:
Msg 214, Level 16, State 2, Procedure sp_executesql, Line 1
Procedure expects parameter '@statement' of type 'ntext/nchar/nvarchar'.
I finally...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 7, 2010 at 10:46 am
I'll bet you didn't know you can update variables at the same time as columns in an UPDATE statement. This should work for you.
declare @clientid int
select @clientid = select max(clientid)+1...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 7, 2010 at 10:33 am
mmcardle (7/7/2010)
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 7, 2010 at 10:23 am
SQLEE (7/7/2010)
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 7, 2010 at 10:13 am
Grant Fritchey (7/7/2010)
WayneS (7/6/2010)
Jeff Moden (7/6/2010)
CirquedeSQLeil (7/6/2010)
WayneS (7/5/2010)
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 7, 2010 at 5:30 am
Jeff Moden (7/6/2010)
CirquedeSQLeil (7/6/2010)
WayneS (7/5/2010)
I've been...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 6, 2010 at 10:09 pm
crossmj (7/6/2010)
My project is currently on hold, but I have been able by using a modified version of Lowell's script to find the tables containing...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 6, 2010 at 4:05 pm
I ran the steps you posted, but did not receive an error. It looks like you might be utilizing the GetBytes function when it's generating your error, but you didn't...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 6, 2010 at 12:55 pm
Mr_Bacon (7/6/2010)
I...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 6, 2010 at 11:04 am
HoustonFirefox (7/6/2010)
DECLARE @Database VARCHAR(255)
DECLARE @DBList TABLE (DBName varchar(255),...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 6, 2010 at 10:15 am
george.greiner (6/29/2010)
--===== If the test table already exists, drop it
IF OBJECT_ID('TempDB..#FileInfo','U')...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 6, 2010 at 10:08 am
Viewing 15 posts - 3,826 through 3,840 (of 5,588 total)