Viewing 15 posts - 811 through 825 (of 1,229 total)
DROP TABLE #Tablename
CREATE TABLE #Tablename (ID INT, [Data] text)
INSERT INTO #Tablename (ID, [Data])
SELECT 1, 'sdfjksdhfksdhkfhsdkfhksdhfksdhfksdhf<t2>net.rim.blackberry</t2><t3>1</t3><t4>sadfsfsdfdsf</t4><t5>asdasdasdsa</t5><t6>7.0.0</t6><t7>asdasdasdsa</t7><t8>asdasdasdas</t8><t9>asdasdasd;</t9></R>'
union all
SELECT 2, 'sdfjksdhfksdhkfhsdkfhksdhfksdhfksdhf<t2>net.rim.blackberry<t2><t3>1</t3><t4>sadfsfsdfdsf</t4><t5>asdasdasdsa</t5><t6>7.0.0</t6><t7>asdasdasdsa</t7><t8>asdasdasdas</t8><t9>asdasdasd;</t9></R>'
-- this will return all of the string following '<t2>'...
October 3, 2011 at 3:40 pm
@Counter means different things in different places, Jim. Not easy to follow. Try this instead:
SELECT...
October 3, 2011 at 3:11 pm
sushilb (10/3/2011)
October 3, 2011 at 2:22 pm
Can you fully and accurately account for the missing days? Is it all sundays? Is it only sundays?
The accuracy of the solution provided to you will reflect the accuracy...
October 2, 2011 at 1:09 pm
R.P.Rozema (8/21/2011)
August 21, 2011 at 12:05 pm
Extend the links table, which would be better designed normalised like this:
GroupName Name
North_South North
North_South South
May 27, 2011 at 12:40 am
Something similar: a data feed to a warehouse was comparing the 10M row DW orders table to the 10M row OLTP orders table then aggregating to obtain the most recent...
May 25, 2011 at 2:21 am
WayneS (5/24/2011)
What's up with all the old threads being resurrected lately? I've seen several this week already... 🙁
Don't you know Wayne - fashion comes and goes. Hotpants again this summer...
May 24, 2011 at 8:51 am
Brandie Tarvin (5/24/2011)
Stefan Krzywicki (5/24/2011)
LutzM (5/23/2011)
May 24, 2011 at 8:22 am
May 24, 2011 at 4:05 am
Use a filtered unique index.
Edit - quote captured wrong post.
May 24, 2011 at 3:38 am
It can be easily done but the performance will be poor. Your best option is to rework the stored procedure (or an alternative version of it, retaining the original) so...
May 22, 2011 at 2:33 pm
Ninja's_RGR'us (5/20/2011)
ChrisM@home (5/20/2011)
Ninja's_RGR'us (5/20/2011)
There's no way I'd ever do that job from a forum.Hire pro.
It's not as tough as it looks Ninja - it's an INSERT from a...
May 20, 2011 at 7:20 am
Ninja's_RGR'us (5/20/2011)
There's no way I'd ever do that job from a forum.Hire pro.
It's not as tough as it looks Ninja - it's an INSERT from a SELECT, OUTPUTting...
May 20, 2011 at 6:50 am
mahe2682 (5/20/2011)
...can u help me for this.
...
Look up the OUTPUT clause in Books Online.
May 20, 2011 at 6:40 am
Viewing 15 posts - 811 through 825 (of 1,229 total)