Viewing 15 posts - 106 through 120 (of 223 total)
Jonathan, check this out. I believe this is an optimal solution. Let me know if it works for you.
declare @var xml;
set @var =
'<DaddyRoot>
...
March 9, 2011 at 12:17 am
Jonathan Mallia (3/8/2011)
In addition, the solution returns three columns, not three rows.
Do you think...
March 8, 2011 at 11:43 pm
Is this what you need? Try this out. Let me know if it does not work.
declare @var xml;
set @var =
'<DaddyRoot>
<root>
<field1>Test 1</field1>
...
March 8, 2011 at 7:59 am
BeginnerBug (3/4/2011)
1. How good is my SP skelton?
2. How can i make sure wether the procedure is executed or not?
3. how can i make sure procedure is recompiled to the...
March 7, 2011 at 5:23 am
roj87 (3/3/2011)
i am Beginner in sql server.so any can help to me.DECLARE @ INT
SET @=20
PRINT @
output
20
I Didn't Given any variable,even though it displaying output
why it happened?
In...
March 3, 2011 at 5:30 am
Cool. Keep coming back to SSC. 🙂
December 17, 2010 at 7:32 pm
Lowell (12/9/2010)
add an index, and actually look at the execution plan before and after, i think you'll get a better idea of what's going on.
David, as Lowell has mentioned, add...
December 16, 2010 at 11:57 pm
Ken Sturgeon (12/1/2010)
Could I set up the computed column in the temp table?
I'm afraid that won't be of much help, as you want to do the update on the parent...
December 1, 2010 at 10:44 pm
Hi ken, i would need more info to give you a good explanation. I am replying from my phone now, so will keep it short.
It's not surprising that you didn't...
December 1, 2010 at 12:39 pm
That's really bad design KS. Anyway, check this out, if you don't want to change the table structure.
if (object_id('tempdb..#contact') is not null) drop table #contact
create table #contact (id smallint, name...
December 1, 2010 at 6:41 am
SwayneBell (12/1/2010)
"Database DeathStar" v. 1.0 - annihilates any database you point it at.
Lol.. that almost sounds like a movie name. Good one there Steve.
- arjun
December 1, 2010 at 6:29 am
Ken Sturgeon (11/30/2010)
December 1, 2010 at 4:58 am
InfiniteError (11/30/2010)
November 30, 2010 at 2:27 am
Sorry to dig up an old post. Even though the poster never replied, there are other folks like me, who read this (thanks to search engines) and gain from it....
November 3, 2010 at 6:30 am
Paul White NZ (9/8/2010)
What I am doing in this first part, is showing you what horrible plans can be produced if we prevent the optimizer from using all of its...
September 8, 2010 at 7:03 am
Viewing 15 posts - 106 through 120 (of 223 total)