Viewing 15 posts - 451 through 465 (of 479 total)
I was amused by what I assume is a typo in the last paragraph
...but show that they value customers enough to now squeeze every last dollar out of their budgets....
January 3, 2008 at 9:48 am
Depending on what you want to do, how about Perl? (Try http://www.activestate.com/Products/activeperl/
You can either create your own format or use it's POD format.
For example:
create procedure userproc
as
/*
=head1 xproc
=head2 Parameters
None
=head2 Description
This selects...
December 20, 2007 at 3:38 am
For most of what I need I use SMALLDATETIME and await the opportunity to use 2K8's DATE type!
December 20, 2007 at 3:24 am
Tejinder Arora (12/13/2007)
The answer you have posted is wrongI tried it on SQL server and it says
"Msg 102, Level 15, State 1, Line 3
Incorrect syntax near 'MIDDLE'."
The only...
December 17, 2007 at 5:31 am
Iordan Slavov (12/13/2007)
Had the "as" word been mandatory you couldn't be tricked - after all how much of a saving are 2 letters?
That's what I felt when I wasn't getting...
December 13, 2007 at 9:16 am
Pete Brown (12/13/2007)
I thought the question of the day was there to inform not just to make the...
December 13, 2007 at 8:28 am
Sagesh (12/13/2007)
I checked the Query like this :
"SELECT * FROM dbo.Customers AS C
MIDDLE JOIN dbo.Employees E ON C.CustomerID = E.EmployeeID",so it's showing some error.If i...
December 13, 2007 at 8:02 am
Jim Russell (12/13/2007)
December 13, 2007 at 5:56 am
Sneaky.
Reminds me of the advice when reading program code (any language) ...
"Don't trust the comments (or formatting?). Read the code!"
Sagesh (12/13/2007)
December 13, 2007 at 3:06 am
GilaMonster (12/10/2007)
My guess is not. I've never seen the optimiser convert one sql statement into multiple and I don't believe it's possible for it to do that.
Actually I wouldn't expect...
December 12, 2007 at 3:47 am
Grant Fritchey (12/10/2007)
http://blogs.msdn.com/craigfr/default.aspxhttp://www.microsoft.com/technet/prodtechnol/sql/2005/qrystats.mspx
I skimmed the information of these sites and there is a lot of interesting information. Unfortunately, although there are discussions about how the optimiser uses statistics to choose...
December 10, 2007 at 11:05 am
Please post what you've tried and, if I have time, I'll see where you are going wrong if I have time. Like most people here, I don't get paid for...
December 10, 2007 at 1:57 am
My question really relates to why the optimiser is so poor and identifying temporary results which could be calculated in advance.
I'd always been told that with (quotes)"set-based programming"(end-quotes) one should...
December 9, 2007 at 3:46 pm
My immediate reaction was "Interesting, but where's the hint as to how to avoid/mitigate the problem?". I have a real-world case that suffers from poor performance and this has pointed...
December 6, 2007 at 2:32 am
Just something of an aside really...
Microsoft recommend that people don't name stored procedures sp_anything. See http://msdn2.microsoft.com/en-us/library/ms190669.aspx#sectiontoggle0.
Apparently the search algorithm looks for sp_anything as a system procedure first. Qualifying it doesn't...
December 5, 2007 at 8:13 am
Viewing 15 posts - 451 through 465 (of 479 total)