Viewing 15 posts - 55,156 through 55,170 (of 59,072 total)
Very nicely done, David, and a lot closer to set based! And you even remembered the brackets for "odd" table names that I forgot
...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 7, 2007 at 6:11 am
It's a naming convention... see the following for more details...
http://en.wikipedia.org/wiki/Hungarian_notation
--Jeff Moden
Change is inevitable... Change for the better is not.
September 6, 2007 at 8:11 pm
... and, it makes beer taste bad ![]()
--Jeff Moden
Change is inevitable... Change for the better is not.
September 6, 2007 at 7:34 pm
Or...
Create a view or a reporting table and use Excel's "Get External Data".
--Jeff Moden
Change is inevitable... Change for the better is not.
September 6, 2007 at 6:02 pm
Serqiy is spot on... a split function will make this easy and quite fast even without indexes. But... before we can make a decent split funtion, we need a little...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 6, 2007 at 5:31 pm
Thanks, Josef... I'm on my way to work... will take a whack at it tonight.
Forgot to ask... can you provide a couple of file names from each directory? And, Lowell...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 6, 2007 at 8:22 am
Actually, it does...
IF OBJECT_ID('TempDB..#tablename','U') IS NOT NULL
DROP TABLE #tableName
--Jeff Moden
Change is inevitable... Change for the better is not.
September 6, 2007 at 8:08 am
Nisha,
Why the conversions? 2 is already an INT and RowID is likely an INT if the column is an IDENTITY column...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 6, 2007 at 8:05 am
Yes... it IS a lie... and there is no lower form of life than someone who lies especially on a resume. But, it's not that person's fault they (s)he got...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 6, 2007 at 8:02 am
You're ignoring bad rows? ![]()
--Jeff Moden
Change is inevitable... Change for the better is not.
September 6, 2007 at 7:57 am
You really want to get good at performance tuning? Start answering questions on this forum
And learn how to make millions of...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 6, 2007 at 7:47 am
Tim,
Thanks for letting my "rant" in... I don't know if we can help you with that nasty cursor, but if it's not hundreds of lines long, maybe you should post...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 6, 2007 at 7:40 am
Tim,
This isn't going to help you a bit... I just want to make a point to any others that may read this because it's been an ongoing battle on this...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 6, 2007 at 7:37 am
Ok... let's stop pussyfooting around... your original post, with the correct indexes on the columns, runs as fast with the Order By as without... it screams.
Now you throw the curve...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 6, 2007 at 7:15 am
The limits in SQL Server 2000 are a bit bigger than that (from BOL)...
ntext
Variable-length Unicode data with a maximum length of 230 - 1 (1,073,741,823) characters. Storage size, in...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 6, 2007 at 6:52 am
Viewing 15 posts - 55,156 through 55,170 (of 59,072 total)