Viewing 15 posts - 19,636 through 19,650 (of 59,072 total)
SQL-DBA-01 (9/3/2015)
I write PS query to get the details.
Cool. Please share it.
--Jeff Moden
Change is inevitable... Change for the better is not.
September 6, 2015 at 8:48 pm
Keithyv (8/31/2015)
Number one should be '...affecting..' not '..effecting..'
The above should have '...effecting...' not '..effecting..'. 😉
--Jeff Moden
Change is inevitable... Change for the better is not.
September 6, 2015 at 10:59 am
If this is in the design phase, then anticipate the worst and that would be them adding another level to the mix. Don't say it won't happen because you...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 6, 2015 at 10:53 am
I do such logging from within stored procedures all the time. The key is to NOT include the logging inside an explicit transaction.
I'll also state that having "long running...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 6, 2015 at 10:45 am
This seems to be a near plagiarism of Steve's recent article of the same name. It even has the same poll. What's up with that?
--Jeff Moden
Change is inevitable... Change for the better is not.
September 6, 2015 at 10:40 am
Grant Fritchey (9/6/2015)
Jeff Moden (9/6/2015)
Grant Fritchey (9/6/2015)
You've shown very simplistic queries that are hitting entire data sets. Your tuning opportunities here are limited to what you can do with hardware.
+1000......
--Jeff Moden
Change is inevitable... Change for the better is not.
September 6, 2015 at 10:28 am
Heh... the correct answer is "Just Some Other Notation" that doesn't belong in a database. 😉
--Jeff Moden
Change is inevitable... Change for the better is not.
September 6, 2015 at 8:10 am
Grant Fritchey (9/6/2015)
You've shown very simplistic queries that are hitting entire data sets. Your tuning opportunities here are limited to what you can do with hardware.
+1000... unless maybe it's a...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 6, 2015 at 8:06 am
1. How many rows are in the actual table?
2. Which column is the clustered index on?
3. How often does this need to be done?
4. Is performance...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 6, 2015 at 8:00 am
coolchaitu (9/5/2015)
Could you please let me know how to check how often an index is inserted
An index is ALWAYS inserted to whenever a row is inserted into the table it...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 5, 2015 at 8:18 pm
Steve Jones - SSC Editor (9/5/2015)
Comments posted to this topic are about the item <A HREF="/articles/Editorial/131238/">NoSQL inside SQL Server</A>
Ok... thanks to your article, I finally decided to spend a bit...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 5, 2015 at 7:32 pm
twin.devil (9/4/2015)
ramrajan (9/4/2015)
declare @startdate datetime = '2015-03-31 23:59:59.097';declare @enddate datetime = '2015-04-01 00:00:00.000';
returns 2
Awesome simplified solution with SELECT DATEDIFF(Year, @startdate, @enddate) + 1 AS QUARTER_DIFFERENCE
Correction Year should be...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 5, 2015 at 5:07 pm
halifaxdal (9/5/2015)
Jeff Moden (9/3/2015)
Since "RecordsWritten" is likely different for each instance of any single Network_Group_Name, you'll probably end up with a 40 million row return that simply duplicates the individual...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 5, 2015 at 5:00 pm
With my possibly faulty understanding of the rules (although I think I'm probably pretty close), I came up with this function. As usual, the details, usage example, and some...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 5, 2015 at 10:11 am
[font="Arial Black"]NOTICE: BECAUSE OF ONE OF THE EXTREMELY WIDE POSTS ABOVE, YOU MIGHT NOT BE
ABLE TO TELL THAT THERE ARE MORE PAGES ON THIS THREAD. SCROLL ALL...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 5, 2015 at 6:26 am
Viewing 15 posts - 19,636 through 19,650 (of 59,072 total)