Viewing 15 posts - 4,696 through 4,710 (of 5,394 total)
Too much talk about steak: I had to have one for dinner!
This was my steak last saturday. Still alive.
November 23, 2009 at 1:38 am
SSSolice, your suggestion is good, it works, but I suggest that you take a look at the article I linked. You will see that "catch-all queries" or dynamic search conditions...
November 23, 2009 at 1:10 am
CirquedeSQLeil (11/20/2009)
All this talk of steak and I'm ready for a Prime Rib.
What's a "Prime Rib", Jason?
November 20, 2009 at 10:19 am
Lynn Pettis (11/20/2009)
Hmmm, sounds like a good vet could get the cow back on its feet... 😉
:hehe:That's the idea behind!:hehe::hehe:
November 20, 2009 at 10:17 am
Thanks Gus, I would never have thought of milk! I'll try and let you know the results.
My steak recipe is the shortest ever:
* volcano hot grill
* raw steak
* max...
November 20, 2009 at 10:06 am
GilaMonster (11/20/2009)
Gianluca Sartori (11/20/2009)
It's not pork chops, but I think it could be time for the friday recipe. 🙂
Interested in a 3-hour pork goulash recipe? Or maybe a 6 hour...
November 20, 2009 at 9:11 am
GSquared (11/20/2009)
November 20, 2009 at 8:36 am
Alter Proc sp_Test (@a varchar(10), @b varchar(10), @c varchar(10) = NULL)
as
Select a, b, c
From TestTable
Where a=@a
and b=@b
and c=ISNULL(@c,c)
This works, but it's not efficient.
Take a look at this article:
http://www.sommarskog.se/dyn-search-2005.html
Regards
Gianluca
November 20, 2009 at 8:28 am
GSquared (11/20/2009)
I don't drink coffee. If it tasted as good as it smells, I'd drink it. As it is, I can't stand the stuff. (And, yes, I've...
November 20, 2009 at 8:20 am
Steve Jones - Editor (11/19/2009)
Gary Istvan Varga (11/19/2009)
Steve, if you are reading this, how much longer until this thread gets into the Guiness Book of Records?
It's a good debate, but...
November 19, 2009 at 8:32 am
Jeff Moden (11/18/2009)
Gianluca Sartori (11/16/2009)
rigid languages such as Java simply don't allow crap.BWAA-HAA!!!! Someone please tell some of the folks I used to work with that!:-P
Oh, that's ok...
November 19, 2009 at 1:37 am
Gary Istvan Varga (11/18/2009)
Charles Kincaid (11/18/2009)
Gianluca Sartori (11/17/2009)
The main point I wanted to raise is that developing good software requires a clever design, not clever code.
Right again.
I would prefer...
November 18, 2009 at 10:14 am
dlongnecker-802303 (11/18/2009)
SELECT @version=version FROM OPENQUERY(@SERVER_NAME,'SELECT @@MicrosoftVersion /...
November 18, 2009 at 9:29 am
dlongnecker-802303 (11/18/2009)
SELECT Top 1 @@MicrosoftVersion FROM server.master.dbo.any_table
This select @@MicrosoftVersion from the LOCAL server, not the remote one.
November 18, 2009 at 8:44 am
Try with OPENQUERY:
SELECT *
FROM OPENQUERY(server,'SELECT @@version')
Hope this helps
Gianluca
November 18, 2009 at 8:43 am
Viewing 15 posts - 4,696 through 4,710 (of 5,394 total)