Viewing 15 posts - 4,741 through 4,755 (of 5,394 total)
DECLARE @tbl_Contacts TABLE (
ContactID int,
ContactName varchar(50)
)
DECLARE @tbl_Products TABLE (
...
October 29, 2009 at 7:35 am
Roy Ernest (10/28/2009)
October 29, 2009 at 2:03 am
Matt Whitfield has written a .NET test harness that maybe could be helpful in choosing the fastest solution.
You could call him in the thread and ask for some info.
October 29, 2009 at 1:57 am
If you want a more in-depth reference on the subject, you could also read Erland Somarskog's blog:
October 28, 2009 at 3:57 am
I suggest you to read this article on how to post performace problems
http://www.sqlservercentral.com/articles/SQLServerCentral/66909/
With a quick look I see a couple of potential problems:
1) NOLOCK is bad, it could return...
October 28, 2009 at 3:42 am
@Table in your script is a varchar variable, not a table.
To do what you're after, you would have to create a sql string in code and then execute it with...
October 28, 2009 at 3:36 am
It's not possible unfortunately.
There's no such suffix to append to consider constants in a particular datatype (looks a lot like java...).
Moreover, a stored procedure ALWAYS returns type int, so that...
October 28, 2009 at 3:32 am
I have seen how fast is this technique for the first time during the "Phil Factor SQL Speed Phreak Competition: No 1".
It was Peso that came up with the...
October 28, 2009 at 3:22 am
I don't know how you intend to display more than two transfers, but this is just a guess on your data:
DECLARE @Transfers TABLE (
...
October 27, 2009 at 2:27 am
I suggest you take a look at this article and post data in a more readable manner:
http://www.sqlservercentral.com/articles/Best+Practices/61537/
October 27, 2009 at 1:56 am
Jack Corbett (10/24/2009)
Thanks guys. Made it through the night and she is fine. This is our first time with a "real" injury to our kids.
Glad to hear everything...
October 26, 2009 at 2:27 am
If it's true that hierarchical model is somehow nearer to OO design, this doesn't mean we would have better design. I often see bad design in Object Oriented languages. Probably...
October 22, 2009 at 9:51 am
Can't you reboot the server and get into the RAID utility?
That would be the first place to look into.
Otherwise, I think you will have to guess.
October 22, 2009 at 7:53 am
I don't think this is the point, Bob.
What I don't find appropriate is storing non-relational data in a relational database and expecting this to behave and perform as if it...
October 22, 2009 at 7:53 am
The only sure fire way to tell would be to reboot the server and look at the RAID configuration
This looks the most sensible answer, but my favourite one is "ask...
October 22, 2009 at 7:18 am
Viewing 15 posts - 4,741 through 4,755 (of 5,394 total)