Viewing 15 posts - 40,366 through 40,380 (of 59,072 total)
narensantanam (12/31/2009)
Like I mentioned in my reply to David - The reporting tools that we are using are unable to do this. I was just trying to find a...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 31, 2009 at 10:18 pm
Simply making much better choices as to what the clustered index is (ie. temporal according to inserts) will keep much of this type of data growth from occuring. Regular...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 31, 2009 at 10:03 pm
Lil SQL (12/30/2009)
--Jeff Moden
Change is inevitable... Change for the better is not.
December 31, 2009 at 9:55 pm
Pradyothana Shastry (12/31/2009)
SELECT o.name AS "Table Name", i.rowcnt AS "Row Count"
FROM sysobjects o, sysindexes i
WHERE i.id =...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 31, 2009 at 9:47 pm
lobbymuncher (12/31/2009)
...and it's too early for beer!
NEVER! 😀
--Jeff Moden
Change is inevitable... Change for the better is not.
December 31, 2009 at 9:44 pm
Lutz is spot on... calculate the answers just once and store them in a temp table.
--Jeff Moden
Change is inevitable... Change for the better is not.
December 31, 2009 at 9:40 pm
David Lester (12/29/2009)
I have a table with...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 31, 2009 at 9:39 pm
Why won't Access take the native DateTime data type? Why are you trying to push data to Access instead of just using a "pass through" view or proc to...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 31, 2009 at 9:31 pm
murthykalyani (12/31/2009)
Steve Jones - Editor (12/31/2009)
--Jeff Moden
Change is inevitable... Change for the better is not.
December 31, 2009 at 9:24 pm
narensantanam (12/31/2009)
As a part of our reporting stack at a bank, we expose off data to reporting tools in the form of views etc. Being a bank, most reports contain...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 31, 2009 at 9:22 pm
Heh... I am loath to learn either SSIS or SSRS but it looks like I may have to finally bite the bullet there. I refuse to make it a...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 31, 2009 at 9:15 pm
Credits to Navy beans that a many-to-many join is present forming an "accidental" cross-join... look in the estimated execution plan for some really "fat" arrows with extremely high row counts...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 31, 2009 at 9:01 pm
Because, as a default, VARCHAR is capable of holding an empty string while CHAR is blank padded. See ANSI_PADDING in Books Online. If you SET ANSI_PADDING OFF,...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 31, 2009 at 8:55 pm
karthikeyan-444867 (12/31/2009)
Jeff,
I really learned some good things from your article. Thanks for my sql teacher.
you should continue to try to resolve...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 31, 2009 at 8:16 pm
Thanks for the feedback, Corey.
--Jeff Moden
Change is inevitable... Change for the better is not.
December 31, 2009 at 8:11 pm
Viewing 15 posts - 40,366 through 40,380 (of 59,072 total)