Viewing 15 posts - 631 through 645 (of 2,894 total)
...
Also, to be able to "make the best use of the underlying DB engine" you must acquire a deep knowledge of the DB engine, and I am not interested in...
March 11, 2013 at 8:39 am
any way to acheive the first result by tweaking the second tsql?
please advise
In short: No, there is no way, without stopping your "software" to change your original query.
March 11, 2013 at 8:28 am
fmuzul (3/11/2013)
Maybe you live in a different world than mine. For me the redeploy of an application is not a problem, I just need to replace a .exe file, and...
March 11, 2013 at 8:15 am
fmuzul (3/11/2013)
BOL is written by Microsoft. This is not an independent point of view.
They want to convince the reader that s.p. are good.
Is wiki independent enough for you? http://en.wikipedia.org/wiki/Stored_procedure
Typical...
March 11, 2013 at 8:06 am
Lynn Pettis (3/11/2013)
Eugene Elutin (3/11/2013)
Curiosity is a great thing!Without it, elephants wouldn't have trunks...
What does the Crocodile have for dinner?...
:hehe:
Whatever it wants...
It prefers to start with curios, little elephants, actually......
March 11, 2013 at 6:13 am
fmuzul (3/11/2013)
My suggestion is: avoid stored procedures at all, unless you have very special needs of performance on some complicated operations....
Calling statement! :w00t:
I'm afraid you will not find many SQL...
March 11, 2013 at 6:08 am
Van Heghe Eddy (3/10/2013)
Security : dba can determine who can execute what
Tuning : mostly stored procedures are written by sql developpers who mostly...
March 11, 2013 at 6:03 am
Curiosity is a great thing!
Without it, elephants wouldn't have trunks...
What does the Crocodile have for dinner?...
:hehe:
March 11, 2013 at 5:05 am
Ok, if the data and output requirements OP provided this time are right, then the following should work for him:
DECLARE @UnitConvert table
(
ID int identity(1,1),
ConvertUnitOne...
March 11, 2013 at 4:37 am
dwain.c (3/11/2013)
I think his query may be workable. All you'd need to do is UNPIVOT the two...
March 11, 2013 at 4:25 am
vahid.arr (3/11/2013)
declare @EndUserDel nvarchar(20)
select * FROM [dbo].[Service]
i want this...
March 11, 2013 at 4:11 am
UNION ALL SELECT 2000,1000
UNION ALL SELECT 2000,700
doesn't look like a chain to me, is it valid combination? Can ConvertUnitOne point to two different ConvertUnitTwo?
If it's not valid, than you...
March 11, 2013 at 4:09 am
Eugene Elutin (3/11/2013)
March 11, 2013 at 3:24 am
You can also create new clustered index with DROP_EXISTING option. I guess it's equivalent to dropping and re-creating non-clustered indexes manually. However, if index you're going to drop is participating...
March 11, 2013 at 3:22 am
Viewing 15 posts - 631 through 645 (of 2,894 total)