Viewing 15 posts - 8,806 through 8,820 (of 59,091 total)
Thanks for all of the information. It was very helpful because some things I read swear by adding an identity column for the primary key regardless of what type...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 20, 2019 at 12:06 pm
OH is actually an alfa surrogate for Ohio.
Not by definition. Part of the definition of a surrogate key is that you should be able to derive NO information by...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 20, 2019 at 6:59 am
Don't get distracted by the arbitrary idea that one key or other has to be primary key. In practical terms it doesn't matter which of the keys in a...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 20, 2019 at 6:56 am
BWWWAAAAA-HAAAAAA-HAAAAA-HAAAA!!!! HOOOOIIIEEEE! Man, I laughed 'til my sides hurt.
Like many of you, I get a lot of notifications from various groups I've signed up for. Here's a snippet of one...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 20, 2019 at 1:19 am
Upon a quick google I think I should be looking for a Tasks entry on the right click menu, however I don't see that as an option when I...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 20, 2019 at 12:47 am
And here is the DDL (I think)
With one exception, all of the VARCHAR columns in that table are VARCHAR(MAX), which is a LOB datatype. That's the first...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 20, 2019 at 12:38 am
Thanks Jeff,
How did you convert 4 million reads to 31 GB of IO ?
A logical read is an 8K page. Divide the reads by 128 to get the...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 20, 2019 at 12:17 am
Jeff, which ones are VARCHAR(MAX)? Are those the fields with length -1?
Yes. You can verify that by right clicking on the table in the Explorer window of SSMS and...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 20, 2019 at 12:12 am
I totally agree with Scott on this one... the IDENTITY column is not needed, occupies space on each page (which is also reflected in memory and disk), and is a...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 19, 2019 at 11:07 pm
And here is the DDL (I think)
With one exception, all of the VARCHAR columns in that table are VARCHAR(MAX), which is a LOB datatype. That's the first thing that...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 19, 2019 at 10:32 pm
It means it's not waiting on anything. Since you're doing more than 4 million reads (more than 31GB of I/O), you likely have some performance challenged code that needs to...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 19, 2019 at 3:09 am
Heh... wait for it... 😉
--Jeff Moden
Change is inevitable... Change for the better is not.
August 17, 2019 at 8:32 pm
What's in the data you're returning? Any LOBS?
--Jeff Moden
Change is inevitable... Change for the better is not.
August 17, 2019 at 4:46 am
There's something wrong with the index on the persisted column or the persisted column itself. It should be as fast as the permanent column you just added. Perhaps the statistics...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 16, 2019 at 5:49 pm
All the innovative data management software in recent times comes from Amazon, Cloudera, open source and numerous disruptive startups who have made advances that have left the...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 15, 2019 at 3:46 pm
Viewing 15 posts - 8,806 through 8,820 (of 59,091 total)