Viewing 15 posts - 2,941 through 2,955 (of 8,761 total)
Quick suggestion
😎
USE TEEST;
GO
SET NOCOUNT ON;
;WITH SAMPLE_DATA(NUMBERS) AS
( SELECT CONVERT(VARCHAR(7),X.NUMBERS,0)
FROM ( VALUES
('1.22345')
...
November 3, 2016 at 8:44 am
scottlackey2001 (11/3/2016)
November 3, 2016 at 8:04 am
scottlackey2001 (11/3/2016)
November 3, 2016 at 5:29 am
User7766 (11/3/2016)
,MessageBody = CAST(MSG.DATA.query('(.)') AS nvarchar(MAX))
Thanks...
November 3, 2016 at 4:30 am
Here is a suggestion, should be enough to get you passed this hurdle
😎
USE TEEST;
GO
SET NOCOUNT ON;
IF OBJECT_ID(N'tempdb..#Employee') IS NOT NULL DROP TABLE #Employee;
Create table #Employee
(
ID int identity (1,1) ,
FirstName...
November 3, 2016 at 4:19 am
User7766 (11/3/2016)
Thanks for the query!
I'm able to select all the columns from XML, But when i try to run the insert query getting below error.
Implicit conversion from data type xml...
November 3, 2016 at 4:09 am
DesNorton (11/3/2016)
If you...
November 3, 2016 at 3:00 am
The XML data type in SQL Server can easily handle multiple root nodes which is somewhat an exception to the rule, my concern was that normally this would break or...
November 3, 2016 at 2:32 am
This XML is not well formed as there are multiple root nodes, is this the actual XML?
😎
The CTE in your code will only retrieve values from the Header part of...
November 3, 2016 at 1:56 am
matej_grabnar (11/2/2016)
Queries are executing...
November 2, 2016 at 5:04 am
poornima.s_pdi (11/1/2016)
Hi Eirikur Eiriksson,Thank you very much.
The Stored Procedure worked now.
Interested in learning these stored procedure and this forum is really helpful.
Tks for your immediate reply.:-)
Regards,
Poornima
You are very welcome.
😎
November 2, 2016 at 3:56 am
Locating a string pattern within a string is straight forward, regardless of whether the string is an XML or not, here is a quick example of a search in an...
November 2, 2016 at 2:37 am
In most cases, we will see up to 2 times better performance when applying this method, more commonly the difference is greater. Here is an example, results speak for themselves...
November 1, 2016 at 6:36 pm
spidey73 (11/1/2016)
Because when I elevate the...
November 1, 2016 at 4:50 am
Viewing 15 posts - 2,941 through 2,955 (of 8,761 total)