<feed version="0.3" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns="http://purl.org/atom/ns#" xml:lang="en-US"><title>Odds and Ends - Zach Nichter</title><link rel="alternate" type="text/html" href="http://www.sqljunkies.com/WebLog/odds_and_ends/default.aspx" /><tagline type="text/html" /><id>http://www.sqljunkies.com/WebLog/odds_and_ends/default.aspx</id><author><url>http://www.sqljunkies.com/WebLog/odds_and_ends/default.aspx</url></author><generator url="http://communityserver.org" version="1.0.1.50214">Community Server</generator><modified>2005-09-29T23:06:00Z</modified><entry><title>How do Multiple Instances Affect your Server</title><link rel="alternate" type="text/html" href="http://www.sqljunkies.com/WebLog/odds_and_ends/archive/2006/06/23/22003.aspx" /><id>d2584c15-f6ef-46f7-a2d4-24fc0e143e76:22003</id><created>2006-06-23T03:56:00Z</created><content type="text/html" mode="escaped">&lt;P&gt;There are some pretty obvious challanges to managing multiple instances of SQL on the same box.&amp;nbsp; Most of which are performance and troublehooting issues.&amp;nbsp; Like with most heavily loaded SQL servers (single instances)&amp;nbsp;there are the problems of job management, however, with multiple instances it's a little more complex. There are many other problems that are inherent with multiple instances but I won't list them all here.&lt;/P&gt;
&lt;P&gt;In my mind one of the biggest issues is how is it affecting system resources, and, are resources waisted or causing contention by having multiple instances?&amp;nbsp; In my current gig we have a 2 node active\active cluster running 7 (yes I said 7) instances of SQL (I'm fighting the battle of a perception that this is ok with management).&amp;nbsp; These machines are x86 machines with 4 HT procs and 16GB RAM each and they are attached to a SAN.&amp;nbsp;&amp;nbsp;The instances were laid out logically to divide applications to different instances, buisness apps, olap, default instance requirements, financial apps and so on.&amp;nbsp; This was all done during a consolidation project far before my time here and with no specific internal SQL knowledge at the time.&lt;/P&gt;
&lt;P&gt;I have been working on educating the staff with SQL internals and the affects that this architecture has on the system, what counters to look at etc.&amp;nbsp; &lt;A href="http://www.microsoft.com/technet/prodtechnol/sql/2000/deploy/64bitconsolidation.mspx#EDD"&gt;This MS whitepaper &lt;/A&gt;explains,&amp;nbsp;fairly well, the performance affects of having multiple instances on a mchine and fit's my arguments of single instances and x64.&lt;/P&gt;
&lt;P&gt;Anyway, enjoy and have a good weekend,&lt;BR&gt;Zach&lt;/P&gt;&lt;img src="http://www.sqljunkies.com/WebLog/aggbug.aspx?PostID=22003" width="1" height="1"&gt;</content><slash:comments>1809</slash:comments><wfw:commentRss>http://www.sqljunkies.com/WebLog/odds_and_ends/commentrss.aspx?PostID=22003</wfw:commentRss></entry><entry><title>TempDB: Using Multiple Files in SQL 2005</title><link rel="alternate" type="text/html" href="http://www.sqljunkies.com/WebLog/odds_and_ends/archive/2006/06/21/21985.aspx" /><id>d2584c15-f6ef-46f7-a2d4-24fc0e143e76:21985</id><created>2006-06-21T02:13:00Z</created><content type="text/html" mode="escaped">&lt;P&gt;I have seen in a couple of places where it is recommended to continue to use multiple files for TempDB in SQL Server 2005.&amp;nbsp; Recently we had a MS consultant on site that was able to contact the SQL Product Development group about that question in particular.&amp;nbsp; Here is the responce that I got in return.&lt;/P&gt;
&lt;P&gt;______________________________________&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New"&gt;The information in KB 328551 is exactly why I don’t think any recommendation based on number of processors is of much use.&amp;nbsp; &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New"&gt;This recommendation has been cut and pasted for several versions of SQL Server now, and while it may have worked great for SQL 7 and SQL 2000 when most machines had just 1-2 processors or a really large server may have had 4 processors.&amp;nbsp; Now with SQL Server 2005, many more servers are starting with 2 sockets with dual core processors (4 cores) and then enabling Hyper threading to give the appearance of 8 processors to the OS. &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New"&gt;Configuring a server with either 4 or 8 tempdb files may by itself cause performance problems (due to the overhead of SQL having to manage too many files), so the recommendation should be changed to start with just 1, and monitor for tempdb contention. ONLY if you see contention then add more files until the contention is resolved. However it’s worth noting that just adding more files won’t always avoid tempdb performance issues, as it’s entirely possible that the issue is with a slow I/O subsystem. Adding more files ONLY helps resolve contention for the schema lock when creating new objects, which in tempdb can happen at a very high rate.&amp;nbsp; However not all applications make use of tempdb. It’s possible that specific application may make no use of tempdb. In that case creating multiple tempdb files is a big overhead and a waste of time.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New"&gt;On the other hand, the application might make extensive use of tempdb, but the bottleneck is not on the schema lock, but rather on the I/O throughput. Unless the additional files are created on different disks, then just adding more tempdb files won’t help this either.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New"&gt;Adding tempdb files only helps if the issue is around schema lock contention. This is another point worth bearing in mind, and one that’s not addressed at all in the number of files = number of processors recommendation.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New"&gt;All these points help illustrate why the recommendation for tempdb on a completely new system should be&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New"&gt;1.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Start with a single tempdb file &lt;/FONT&gt;&lt;BR&gt;&lt;FONT face="Courier New"&gt;2.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Monitor for tempdb related performance issues &lt;/FONT&gt;&lt;BR&gt;&lt;FONT face="Courier New"&gt;3.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If the bottleneck is the schema lock then consider adding more tempdb files until the contention is resolved. &lt;/FONT&gt;&lt;BR&gt;&lt;FONT face="Courier New"&gt;4.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If the bottleneck is I/O throughput then consider adding disks to the array backing the tempdb files, or create additional tempdb files on additional disks.&amp;nbsp; &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New"&gt;Since you already have an existing system, you should monitor the tempdb usage and bottlenecks (you have the perfmon logs already), and use this information to help determine the starting number of tempdb files, and the number of disks backing the tempdb files.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New"&gt;As always this is just a starting point as new server hardware is invariably faster, has more memory, and faster disks, which will most likely change where the next bottleneck is.&lt;BR&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;________________________________________&lt;/P&gt;
&lt;P&gt;Anyway, thought I would pass it along.&lt;/P&gt;
&lt;P&gt;-Zach&lt;/P&gt;&lt;img src="http://www.sqljunkies.com/WebLog/aggbug.aspx?PostID=21985" width="1" height="1"&gt;</content><slash:comments>79</slash:comments><wfw:commentRss>http://www.sqljunkies.com/WebLog/odds_and_ends/commentrss.aspx?PostID=21985</wfw:commentRss></entry><entry><title>Pictures of my boys</title><link rel="alternate" type="text/html" href="http://www.sqljunkies.com/WebLog/odds_and_ends/archive/2006/03/28/19817.aspx" /><id>d2584c15-f6ef-46f7-a2d4-24fc0e143e76:19817</id><created>2006-03-28T04:34:00Z</created><content type="text/html" mode="escaped">&lt;P&gt;Now I know most of you dont care, but I have posted pictures of my boys in the &lt;a href="http://www.sqljunkies.com/WebLog/photos/odds_and_ends/default.aspx"&gt;gallery&lt;/A&gt;.&amp;nbsp; I was&amp;nbsp;showing them what daddy was&amp;nbsp;working on&amp;nbsp;and they wanted me to put pictures of them&amp;nbsp;on the stuff that I work on (that's about as technical as it gets with my family).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-Zach&lt;/P&gt;&lt;img src="http://www.sqljunkies.com/WebLog/aggbug.aspx?PostID=19817" width="1" height="1"&gt;</content><slash:comments>689</slash:comments><wfw:commentRss>http://www.sqljunkies.com/WebLog/odds_and_ends/commentrss.aspx?PostID=19817</wfw:commentRss></entry><entry><title>Tough Row to Hoe (Part 2)</title><link rel="alternate" type="text/html" href="http://www.sqljunkies.com/WebLog/odds_and_ends/archive/2006/03/27/19774.aspx" /><id>d2584c15-f6ef-46f7-a2d4-24fc0e143e76:19774</id><created>2006-03-27T07:30:00Z</created><content type="text/html" mode="escaped">&lt;P&gt;Alright, so there&amp;nbsp;is a spreadsheet that&amp;nbsp;I am attempting to deliver on to you guys that read Tough Row to Hoe.&amp;nbsp; I am working on cleaning up my DMV spreadsheet a bit, and figuring out a way that I can post the Excel file that I created it in.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;Now with the RTM version of 2005 almost all of the DMV's are documented but when I started the task of organizing all of the DMV's and documenting them there was very little information in the BOL about them.&amp;nbsp; So now you can find what you need in BOL in reference to the DMV's so I thought I wouldn't need my spreadsheet anymore.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;Well, this has turned out to not be true.&amp;nbsp; I have had multiple situations where I was doing something in 2005 and I had no idea what DMV I would need to look at to find the information I was researching.&amp;nbsp; With the way I organized my spreadsheet I have found that it's extremely easy to find what I need in seconds.&amp;nbsp; I am working on adding the links to the BOL entry for the views so that I can look at the info there too, but that is in the next version.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;In the mean time does anyone know how to attach a file to a blog enrty here?&lt;/P&gt;
&lt;P&gt;Thanks,&lt;BR&gt;Zach&lt;/P&gt;&lt;img src="http://www.sqljunkies.com/WebLog/aggbug.aspx?PostID=19774" width="1" height="1"&gt;</content><slash:comments>4060</slash:comments><wfw:commentRss>http://www.sqljunkies.com/WebLog/odds_and_ends/commentrss.aspx?PostID=19774</wfw:commentRss></entry><entry><title>Science: Kinetic Energy, CPU physics</title><link rel="alternate" type="text/html" href="http://www.sqljunkies.com/WebLog/odds_and_ends/archive/2006/03/13/19054.aspx" /><id>d2584c15-f6ef-46f7-a2d4-24fc0e143e76:19054</id><created>2006-03-13T03:05:00Z</created><content type="text/html" mode="escaped">&lt;P&gt;So I know this is not SQL Server specific information but these are a couple of the things I have read recently that I have found interesting.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;There was an &lt;A href="http://www.sandia.gov/news-center/news-releases/2006/physics-astron/hottest-z-output.html"&gt;incredible discovery&lt;/A&gt; at the Sandia National Lab that could mean a great deal, potentially, for our world.&amp;nbsp; Sandia recently reported being able to heat steel and tungsten to&amp;nbsp;&lt;STRONG&gt;2 billion degrees&lt;/STRONG&gt; Kelvin for 10 billionths of a second (Wow, I wonder how they accomplish measuring something in billionths of a second, much less measuring something that is 2 billion degrees).&amp;nbsp; The process that the metal goes through was interesting too.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;They took a spool of steel threads, the spool was about the size of a coffee cup and the threads of steel were thinner than a human hair.&amp;nbsp; Then they pumped 20 million amps of current through the core (spool), and the current vaporizes the core into a cloud of ions (plasma).&amp;nbsp; There is a magnetic field from the current that takes the ions and squishes (that's right I said it, squishes) the plasma to a thickness about the size of a pencil lead with a velocity that could travel a plane from New York to San Fran in just a few seconds.&amp;nbsp; Then for a short period of time (no doubt measured in 10s of billionths of a second), the plasma ions, once squished (yup, there's that word again and I'm sure the appropriate word is squashed but I like squished better),&amp;nbsp;has no place to travel because it has been condensed to it's most compact form, therefore&amp;nbsp;keeping the ions from traveling and should have&amp;nbsp;kept the ions&amp;nbsp;from producing energy.&amp;nbsp; But the ions continued to produce energy and during this period is when the temperatures became super charged and produced the 2 billion degree heat.&amp;nbsp; I&amp;nbsp;read from one source (and there are many out there) that they may have discovered a new&amp;nbsp;state of matter.&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One thing that I think was pretty significant was " the radiated x-ray output was as much as four times the expected kinetic energy input", that was interesting in itself, check it out if your interested. Anyway, I thought&amp;nbsp;that one&amp;nbsp;at the very least, blog worthy.&lt;/P&gt;
&lt;P&gt;The second interesting find was on the future of CPU's.&amp;nbsp; This was an article I found on &lt;A href="http://news.zdnet.co.uk/hardware/chips/0,39020354,39256675,00.htm"&gt;ZDNet&lt;/A&gt;, and it refers to Moore's Law as coming to end of life with current processor technology.&amp;nbsp; The article stated that "Simply put, today's devices, which are based on complementary metal oxide semiconductor standards, can't get much smaller and still function properly and effectively. That's where spintronics comes in," said UCLA engineering professor Kang Wang, who will act as director of the institute."&lt;/P&gt;
&lt;P&gt;Spintronics is a technology that is being invested in by the big chip manufacturers.&amp;nbsp; &lt;SPAN&gt;The spintronics technology has something to do with (I'm no engineer) the spin of electrons as they are charged and passed from one point to another (I can picture engineering geeks everywhere just elated with the possibilities). Anyway, short but interesting read.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;/SPAN&gt;Enjoy,&lt;BR&gt;Zach&lt;BR&gt;&lt;/P&gt;&lt;img src="http://www.sqljunkies.com/WebLog/aggbug.aspx?PostID=19054" width="1" height="1"&gt;</content><slash:comments>1</slash:comments><wfw:commentRss>http://www.sqljunkies.com/WebLog/odds_and_ends/commentrss.aspx?PostID=19054</wfw:commentRss></entry><entry><title>Transactional Database Structures, Intriguing...</title><link rel="alternate" type="text/html" href="http://www.sqljunkies.com/WebLog/odds_and_ends/archive/2006/02/16/18122.aspx" /><id>d2584c15-f6ef-46f7-a2d4-24fc0e143e76:18122</id><created>2006-02-16T02:55:00Z</created><content type="text/html" mode="escaped">&lt;P&gt;I subscribe to &lt;A href="http://jasonhaley.com/blog/default.aspx"&gt;Jason Haley's blog&lt;/A&gt; and there was an interesting blog reference today on &lt;A href="http://codebetter.com/blogs/eric.wise/archive/2006/02/15/138281.aspx"&gt;"Transactional" Database Structures&lt;/A&gt;.&amp;nbsp; I have to admit I have never worked on a database that has required this kind of design before and I found myself intrigued by the concept, I like the simplicity and complexity of it.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;He is referencing an architecture that uses purely inserts and no updates along with a checksum to show whether or not a client is active or inactive based on whether they have made their payments to the provider.&amp;nbsp; He also summarizes the&amp;nbsp;pro's and con's of using this architecture.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;Because I have no working experience with this structure and architecture I don't know what the performance caveats would be so I can't say whether or not I support it, but I will say that I do find it interesting.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;It's a good read to get the brain going though.&lt;/P&gt;
&lt;P&gt;-Zach&lt;/P&gt;&lt;img src="http://www.sqljunkies.com/WebLog/aggbug.aspx?PostID=18122" width="1" height="1"&gt;</content><slash:comments>3</slash:comments><wfw:commentRss>http://www.sqljunkies.com/WebLog/odds_and_ends/commentrss.aspx?PostID=18122</wfw:commentRss></entry><entry><title>Interview with Louis Davidson</title><link rel="alternate" type="text/html" href="http://www.sqljunkies.com/WebLog/odds_and_ends/archive/2006/02/07/17970.aspx" /><id>d2584c15-f6ef-46f7-a2d4-24fc0e143e76:17970</id><created>2006-02-07T07:52:00Z</created><content type="text/html" mode="escaped">&lt;P&gt;Check out the podcast interview of Louis Davidson on &lt;A href="http://www.sqldownunder.com/"&gt;SQL Down Under's&lt;/A&gt; web site.&amp;nbsp; It really is&amp;nbsp;a great concept.&amp;nbsp; There are 11 other mp3 downloadable interviews with people that have great SQL knowledge (Kalen Delany, Adam Machanic, Tom Moreau, Itzik Ben-Gan) and others.&lt;/P&gt;
&lt;P&gt;Enjoy,&lt;BR&gt;Zach&lt;/P&gt;&lt;img src="http://www.sqljunkies.com/WebLog/aggbug.aspx?PostID=17970" width="1" height="1"&gt;</content><slash:comments>709</slash:comments><wfw:commentRss>http://www.sqljunkies.com/WebLog/odds_and_ends/commentrss.aspx?PostID=17970</wfw:commentRss></entry><entry><title>SQL Server 2005 System Map</title><link rel="alternate" type="text/html" href="http://www.sqljunkies.com/WebLog/odds_and_ends/archive/2006/01/23/17891.aspx" /><id>d2584c15-f6ef-46f7-a2d4-24fc0e143e76:17891</id><created>2006-01-23T09:44:00Z</created><content type="text/html" mode="escaped">&lt;P&gt;If you haven't heard it yet (and it has more than likely been blogged about a 100 times over) the SQL Server 2005 system map is downloadable off of &lt;A href="http://www.microsoft.com/downloads/details.aspx?FamilyID=2EC9E842-40BE-4321-9B56-92FD3860FB32&amp;amp;displaylang=en"&gt;Microsoft's Download site&lt;/A&gt;.&amp;nbsp; Check it out for yourself.&amp;nbsp; I&amp;nbsp;can't wait for the compiled help version of this to come out.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Enjoy!&lt;/br&gt;
Zach&lt;/P&gt;&lt;img src="http://www.sqljunkies.com/WebLog/aggbug.aspx?PostID=17891" width="1" height="1"&gt;</content><slash:comments>0</slash:comments><wfw:commentRss>http://www.sqljunkies.com/WebLog/odds_and_ends/commentrss.aspx?PostID=17891</wfw:commentRss></entry><entry><title>Movin On</title><link rel="alternate" type="text/html" href="http://www.sqljunkies.com/WebLog/odds_and_ends/archive/2006/01/09/17790.aspx" /><id>d2584c15-f6ef-46f7-a2d4-24fc0e143e76:17790</id><created>2006-01-08T16:38:00Z</created><content type="text/html" mode="escaped">&lt;P&gt;Recently I made a decision to go out on my own.&amp;nbsp; I am taking a contract for a few months while I build up and start my own business.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;I know that I havent blogged at all in the past few months and I'll be starting up again shortly.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;-Zach&lt;/P&gt;&lt;img src="http://www.sqljunkies.com/WebLog/aggbug.aspx?PostID=17790" width="1" height="1"&gt;</content><slash:comments>1</slash:comments><wfw:commentRss>http://www.sqljunkies.com/WebLog/odds_and_ends/commentrss.aspx?PostID=17790</wfw:commentRss></entry><entry><title>Tough Row to Hoe</title><link rel="alternate" type="text/html" href="http://www.sqljunkies.com/WebLog/odds_and_ends/archive/2005/10/26/17222.aspx" /><id>d2584c15-f6ef-46f7-a2d4-24fc0e143e76:17222</id><created>2005-10-26T14:49:00Z</created><content type="text/html" mode="escaped">&lt;P&gt;Man, I know that you all have been patient, and it seems like forever ago that I told you all that I would be posting my findings for the DMV's.&amp;nbsp; I have probably spent over 80 hours researching DMV's and I still feel so far from ready to post anything.&amp;nbsp; Problem is, I am reasearching rabbit trails as I find them, and while this is good for discovery it keeps me from my original goal.&amp;nbsp; Work has been catching up with me too.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;I promise to finish at least a couple of these before the week is out so I can post something.&lt;/P&gt;
&lt;P&gt;Sorry to keep you waiting, &lt;BR&gt;Zach&lt;/P&gt;&lt;img src="http://www.sqljunkies.com/WebLog/aggbug.aspx?PostID=17222" width="1" height="1"&gt;</content><slash:comments>2</slash:comments><wfw:commentRss>http://www.sqljunkies.com/WebLog/odds_and_ends/commentrss.aspx?PostID=17222</wfw:commentRss></entry><entry><title>SQL Server 2005 Migration</title><link rel="alternate" type="text/html" href="http://www.sqljunkies.com/WebLog/odds_and_ends/archive/2005/10/18/17167.aspx" /><id>d2584c15-f6ef-46f7-a2d4-24fc0e143e76:17167</id><created>2005-10-18T07:23:00Z</created><content type="text/html" mode="escaped">&lt;P&gt;A friend of mine, &lt;A href="http://www.yukonxml.com"&gt;Darshan Singh,&lt;/A&gt;&amp;nbsp;wrote this &lt;A href="http://www.windowsitpro.com/Article/ArticleID/47749/47749.html"&gt;article&lt;/A&gt; for SQL Server magazine.&amp;nbsp; It's a great article for those of you that are looking to make the migration from 2000 to 2005.&amp;nbsp; The article covers&amp;nbsp;two methods of migrating&amp;nbsp;SQL Servers (in-place upgrade)&amp;nbsp;and databases (side-by-side upgrade).&amp;nbsp; &lt;/P&gt;
&lt;P&gt;Enjoy the article, it's very well written, clear, and has some great content.&lt;/P&gt;
&lt;P&gt;Enjoy, &lt;br&gt;Zach&lt;/P&gt;&lt;img src="http://www.sqljunkies.com/WebLog/aggbug.aspx?PostID=17167" width="1" height="1"&gt;</content><slash:comments>2</slash:comments><wfw:commentRss>http://www.sqljunkies.com/WebLog/odds_and_ends/commentrss.aspx?PostID=17167</wfw:commentRss></entry><entry><title>DMV Research</title><link rel="alternate" type="text/html" href="http://www.sqljunkies.com/WebLog/odds_and_ends/archive/2005/10/14/17150.aspx" /><id>d2584c15-f6ef-46f7-a2d4-24fc0e143e76:17150</id><created>2005-10-14T04:44:00Z</created><content type="text/html" mode="escaped">&lt;P&gt;I have been doing a great deal of research on the DMV's, functions, stored procs and tables&amp;nbsp;that are shipped in 2005.&amp;nbsp; During my adventure I have learned a lot along the way.&amp;nbsp; I have collected a ton of great information and have had some luck finding information in&amp;nbsp;a lot of great places.&amp;nbsp; Some of the information that I have picked up has been a result of just trying to understand exactly what it is I'm looking at when I query a DMV.&amp;nbsp;&amp;nbsp;This stuff can be mind boggling when your not a developer and there is not a bit of information available about it on the web.&lt;/P&gt;
&lt;P&gt;I have been collecting the information and breaking the DMV's, functions and stored procs&amp;nbsp;up into categories and trying to derive what the object is doing, then determining how it could be used and maybe giving&amp;nbsp;some query examples.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;Look for some of the results soon.&lt;/P&gt;
&lt;P&gt;-Zach&amp;nbsp;&lt;/P&gt;&lt;img src="http://www.sqljunkies.com/WebLog/aggbug.aspx?PostID=17150" width="1" height="1"&gt;</content><slash:comments>0</slash:comments><wfw:commentRss>http://www.sqljunkies.com/WebLog/odds_and_ends/commentrss.aspx?PostID=17150</wfw:commentRss></entry><entry><title>DMV's - Query Troublshooting</title><link rel="alternate" type="text/html" href="http://www.sqljunkies.com/WebLog/odds_and_ends/archive/2005/10/06/17022.aspx" /><id>d2584c15-f6ef-46f7-a2d4-24fc0e143e76:17022</id><created>2005-10-06T01:51:00Z</created><content type="text/html" mode="escaped">&lt;P&gt;I read the &lt;A href="http://blogs.msdn.com/sqltips/default.aspx"&gt;SQL Server Engine Tips&lt;/A&gt;&amp;nbsp;blog this morning about troubleshooting SQL statements in 2005.&amp;nbsp; If you don't read this blog you really should consider checking it out.&amp;nbsp; The blog uses the new T-SQL features and DMV's to retrieve information about queries that have run through the server.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;There's a lot of great content in the &lt;A href="http://blogs.msdn.com/sqltips/archive/2005/10/05/Top_N_costly_query_plans.aspx"&gt;post&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Enjoy,&lt;BR&gt;Zach&lt;/P&gt;&lt;img src="http://www.sqljunkies.com/WebLog/aggbug.aspx?PostID=17022" width="1" height="1"&gt;</content><slash:comments>816</slash:comments><wfw:commentRss>http://www.sqljunkies.com/WebLog/odds_and_ends/commentrss.aspx?PostID=17022</wfw:commentRss></entry><entry><title>What's Next?</title><link rel="alternate" type="text/html" href="http://www.sqljunkies.com/WebLog/odds_and_ends/archive/2005/10/04/17004.aspx" /><id>d2584c15-f6ef-46f7-a2d4-24fc0e143e76:17004</id><created>2005-10-04T01:19:00Z</created><content type="text/html" mode="escaped">&lt;P&gt;This week I am doing research on 2 different SQL 2005 topics.&amp;nbsp; The first is a collection of the DMV's I've heard about and grouping them together for usage.&amp;nbsp; The second is testing DB Mirroring.&amp;nbsp; I want to hammer mirroring and see how it performs.&amp;nbsp;The plan is to write a couple of articles about the setup, performance and test results of the technology.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;If there is anything in specific you would like to know about DB Mirroring, let me know and I'll try to fit it into the testing.&lt;/P&gt;
&lt;P&gt;Later,&lt;BR&gt;Zach&lt;/P&gt;&lt;img src="http://www.sqljunkies.com/WebLog/aggbug.aspx?PostID=17004" width="1" height="1"&gt;</content><slash:comments>707</slash:comments><wfw:commentRss>http://www.sqljunkies.com/WebLog/odds_and_ends/commentrss.aspx?PostID=17004</wfw:commentRss></entry><entry><title>PASS 2005 - Day 2</title><link rel="alternate" type="text/html" href="http://www.sqljunkies.com/WebLog/odds_and_ends/archive/2005/09/29/16971.aspx" /><id>d2584c15-f6ef-46f7-a2d4-24fc0e143e76:16971</id><created>2005-09-29T15:06:00Z</created><content type="text/html" mode="escaped">&lt;P&gt;Wow is all I can really say.&amp;nbsp; I only got to show up today for PASS for a couple of hours but all I can say is WOW!&amp;nbsp; This was my first PASS conference and man was it great.&amp;nbsp; I got to see all of my old co-workers at Scalability Experts today and that was great, I really enjoyed seeing them.&amp;nbsp; I saw all of the great booths and new products in the SQL Server market, which was a lot of fun.&amp;nbsp; Met some new people and hopefully new friends.&amp;nbsp; I really enjoyed the social side of the gathering.&amp;nbsp; It was great spending some time with ex-coworkers of mine Randy Dyess, Rick Heiges, Erin Welker, Darshan Singh and Larry Chesnut.&amp;nbsp; I met Louis Davidson and talked with him for a bit (very nice guy). And I got to stay for almost all of one session.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I went and&amp;nbsp;saw Bob Dorr's session&amp;nbsp;about the SQL Server 2005 OS Engine.&amp;nbsp; Man was it great, the content was excellent and there was a lot of talk about how to use the system dmv's that PSS will use for trouble shooting issues, how to get to a sessions last error message, all of the statistics (OS, SQL, thread, etc.) for that thread when the error occured and so on.&amp;nbsp; Man it was great and I wish that I could have stayed for the whole thing, but it was great while it lasted.&amp;nbsp; Some of the DMV's he covered were... &lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN&gt;dm_os_ring_buffer&lt;/SPAN&gt; 
&lt;LI&gt;&lt;SPAN&gt;dm_os_sys_info&lt;/SPAN&gt; 
&lt;LI&gt;&lt;SPAN&gt;dm_os_hosts&lt;/SPAN&gt; 
&lt;LI&gt;&lt;SPAN&gt;dm_os_stacks&lt;/SPAN&gt; 
&lt;LI&gt;&lt;SPAN&gt;Dm_os_wait_tasks&lt;/SPAN&gt; 
&lt;LI&gt;&lt;SPAN&gt;Dm_os_workers&lt;/SPAN&gt; 
&lt;LI&gt;&lt;SPAN&gt;Dm_os_schedulers&lt;/SPAN&gt; 
&lt;LI&gt;&lt;SPAN&gt;Dm_os_buffer_descriptors&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;SIDE NOTE:&amp;nbsp; &lt;/STRONG&gt;Have I ever told you how much I love OneNote? Dang, I love that app.&amp;nbsp;&amp;nbsp;It's&amp;nbsp;a great app&amp;nbsp;for taking notes at things like technical sessions.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;There were awsome topics beinng covered and it was a lot of fun.&amp;nbsp; Hope everyone that is there enjoys Friday.&lt;/P&gt;
&lt;P&gt;Thanks PASS, you all did a fantastic job!!&lt;/P&gt;
&lt;P&gt;-Zach&lt;/P&gt;&lt;img src="http://www.sqljunkies.com/WebLog/aggbug.aspx?PostID=16971" width="1" height="1"&gt;</content><slash:comments>0</slash:comments><wfw:commentRss>http://www.sqljunkies.com/WebLog/odds_and_ends/commentrss.aspx?PostID=16971</wfw:commentRss></entry></feed>