July 26, 2013 at 9:40 am
yeah! back ups and more back ups... that is the question!
July 26, 2013 at 9:41 am
I could think of a few indexes that might be worth adding to the pantry. Though perhaps my wife would be happier if we continue with partitioning on the item_type flag rather than adding the overhead of index maintenance…
Also: Be sure to have all pantry searches be "Select top 1" without an order statement, especially if you leave it in a heap.
July 26, 2013 at 9:56 am
Brilliant!! :laugh:
July 26, 2013 at 10:18 am
jjeffryes (7/26/2013)
That was amusing. I expecially liked "Scans." Life is like that.
Of course you realize that it would be more efficient to build your pantry clustered index based on a categorization of items and have alphabetically as a secondary or tertiary sort item, so that you could more easily seek and possibly even do partition elimination. Otherwise you could end up looking for spaghetti sauce, which was actually entered by someone else as pasta sauce and be looking on the wrong shelf entirely.
As a side note, I remember way back when Altavista was a popular search engine it did have some rudimentary expressions it would recognize + and - as keywords to include and exclude from results, and you could put things in "double quotes" to force the search engine to recognize multiple words as one keyword. Most serach engines now seem to ignore those notations or even worse take the + and - as keywords instead of modifiers.
July 26, 2013 at 11:18 am
This was a fun read! Thanks.
July 26, 2013 at 11:20 am
Very nicely done.
July 26, 2013 at 11:54 am
I really do think google would be easier if I could do this:
select * from closeby_restaurants where cuisine = 'chinese' and distance_from_home <= 2 miles and deliciousness = 'awesome' and service_time = 'quick'
Jason...AKA CirqueDeSQLeil
_______________________________________________
I have given a name to my pain...MCM SQL Server, MVP
SQL RNNR
Posting Performance Based Questions - Gail Shaw[/url]
Learn Extended Events
July 26, 2013 at 12:56 pm
SQLRNNR (7/26/2013)
I really do think google would be easier if I could do this:
select * from closeby_restaurants where cuisine = 'chinese' and distance_from_home <= 2 miles and deliciousness = 'awesome' and service_time = 'quick'
I would add
AND MSG = 0
July 26, 2013 at 12:58 pm
Revenant (7/26/2013)
SQLRNNR (7/26/2013)
I really do think google would be easier if I could do this:
select * from closeby_restaurants where cuisine = 'chinese' and distance_from_home <= 2 miles and deliciousness = 'awesome' and service_time = 'quick'
I would add
AND MSG = 0
Good idea
Jason...AKA CirqueDeSQLeil
_______________________________________________
I have given a name to my pain...MCM SQL Server, MVP
SQL RNNR
Posting Performance Based Questions - Gail Shaw[/url]
Learn Extended Events
July 26, 2013 at 1:50 pm
SQLRNNR (7/26/2013)
I really do think google would be easier if I could do this:
select * from closeby_restaurants where cuisine = 'chinese' and distance_from_home <= 2 miles and deliciousness = 'awesome' and service_time = 'quick'
open Google up to SQL injection... what could go wrong?
...
-- FORTRAN manual for Xerox Computers --
July 26, 2013 at 2:24 pm
Absolute pure gold!
Appreciated every word.
🙂
Not all gray hairs are Dinosaurs!
July 26, 2013 at 2:37 pm
SQLRNNR (7/26/2013)
Revenant (7/26/2013)
SQLRNNR (7/26/2013)
I really do think google would be easier if I could do this:
select * from closeby_restaurants where cuisine = 'chinese' and distance_from_home <= 2 miles and deliciousness = 'awesome' and service_time = 'quick'
I would add
AND MSG = 0
Good idea
Jason, shouldn't there be single quotes around the 2 miles? 😛
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
July 26, 2013 at 5:09 pm
Alvin Ramard (7/26/2013)
SQLRNNR (7/26/2013)
Revenant (7/26/2013)
SQLRNNR (7/26/2013)
I really do think google would be easier if I could do this:
select * from closeby_restaurants where cuisine = 'chinese' and distance_from_home <= 2 miles and deliciousness = 'awesome' and service_time = 'quick'
I would add
AND MSG = 0
Good idea
Jason, shouldn't there be single quotes around the 2 miles? 😛
Maybe miles would be some sort of new keyword for Google SQL? Can't call it G-SQL since that apparently already exists for Gnome.
Excellent post Hakim, very entertaining!
July 27, 2013 at 4:52 pm
Well done. Greatly enjoyed this article.
August 29, 2013 at 5:40 am
Great editorial.
Mind you a true DBA would to be too paranoid to go out at all. :ermm:
qh
Viewing 15 posts - 16 through 30 (of 31 total)
You must be logged in to reply to this topic. Login to reply