Viewing 15 posts - 2,236 through 2,250 (of 2,458 total)
OTF (5/22/2013)
phc (5/18/2013)
SELECT C.first_name"Provider", Count(C.provider_no) "Diabetics with over 1 BP...
May 28, 2013 at 3:56 pm
Sergiy (5/8/2013)
I think you missing the point.
The question was not about use of XML in real life, but about why we cannot store XML files using good old nvarchar/ntext data...
May 14, 2013 at 9:13 am
Shadab Shah (5/7/2013)
Every now and then i am learning something new in SQL Server. Latest in that series is XML Datatype. While learning XML datatype i came to...
May 8, 2013 at 6:17 pm
Thanks Ben and sorry for the late reply. I am able to find 8.5 (and 7.0) via download but not 8.0. Not a big deal, thanks for checking!
May 8, 2013 at 10:09 am
Eddie Wuerch (4/27/2013)
April 29, 2013 at 9:17 am
jamoore (4/22/2013)
Thank you, Alan... that helps. Looking forward to taking a look at the regular expression if you can find it.
What I have here won't be a complete solution but...
April 23, 2013 at 1:06 pm
This is a tricky one. You could use Regular expressions for this; there is a good script for this in the Regular Expressions Cookbook by O'Reilly which I will try...
April 22, 2013 at 3:40 pm
labri (4/19/2013)
Thank you all for your answers! I found what I needed using theAlan.B's query.
I'm glad that worked for you. It is worth noting that my query was pretty...
April 22, 2013 at 1:31 pm
Lynn Pettis (4/19/2013)
set nocount on;
-- sample data
IF OBJECT_ID('tempdb..#x') IS NOT NULL
DROP TABLE #x;
CREATE TABLE #x (id int identity primary key, val nvarchar(100) NOT NULL);
GO
INSERT INTO #x...
April 22, 2013 at 1:28 pm
RexHelios (4/19/2013)
Would you mind elaborating, AJB? I didn't quite get it. I used inner join since I thought, if there is no match no update is required.- Rex
I am...
April 19, 2013 at 12:21 pm
It's work noting that wolfkill and I are using the same splitter[/url] (I mine just has a different name).
-- sample data
IF OBJECT_ID('tempdb..#x') IS NOT NULL
DROP TABLE #x;
CREATE TABLE...
April 18, 2013 at 2:38 pm
I created some test data to show a different way using the patternSplit function from here[/url].
--Setup sample data
IF OBJECT_ID('tempdb..#temptesttable') IS NOT NULL
DROP TABLE #temptesttable;
CREATE TABLE #temptesttable (EventText varchar(100));
INSERT #temptesttable
VALUES('Receiving...
April 18, 2013 at 1:57 pm
See the notes in my code. My understanding, too, is that you will always get a scan (index or table) unless you provide a filter. E.g. Select * FROM x...
April 18, 2013 at 12:44 pm
kpann (4/18/2013)
When you download the zip files, you'll notice that I have...
April 18, 2013 at 12:22 pm
RexHelios (4/18/2013)
I agree with Sean Lange. More clarity and some ground to get others started would be nice to have.
Having said that, I have created table variables to simulate...
April 18, 2013 at 12:16 pm
Viewing 15 posts - 2,236 through 2,250 (of 2,458 total)