Thanks for joining the 3 hour webinar I did for Pragmatic Works on Advanced TSQL. There were, as could be expected, many questions regarding the webinar so in this blog post I will try to answer as many of those questions as I can.
The TSQL Scripts used in the class can be found HERE: Please note that for one of the examples you will need to create and load the MicrosoftStockHistory example and I have provided a script to do just that.
Common Table Expressions
Question: Why does a common table expression begin with a semi-colon?
Answer: The WITH keyword is used for other purposes in TSQL other than just CTEs so to avoid confusion any statements prior to the CTE must be terminated using a semi-colon.
Question: What are the performance differences between CTEs and Temp tables?
Answer: Unfortunately CTEs and Temp Tables have entirely different use case scenarios so this is like comparing apples to oranges. CTEs are logical tables used to simplify code, essentially they are like views. Temp tables on the other hand are physically materialized on disk in the temp db. They also have column statistics and can be indexed for optimizing your TSQL Code. The answer to this question is really much more in depth then what I have provided here but this is the really really short answer.
Question: Is there a performance difference with CTE and Derived tables?
Answer: Rarely will you see a performance difference here, I have always seen identical plans personally when comparing performance. However, I called and talked to the smartest DBA I know, Bradley Ball. There are some situations with self-referencing CTEs where the SQL Server optimizer can generate a bad SQL Plan due to the Cardinality Estimator not being able to read the statistics of the underlying table. This is the same behavior that you would see if you were nesting views on top of views. In those situations a Derived table or a Temp Table would be a better option.
Window Functions: Framing
Question: When using Range for the frame could the duplicates values be eliminated with the Partition By Clause?
Answer: Range can generate unusual results when used to generate running totals. The unusual results occur when the Order By clause within a partition can contain duplicate values therefore duplicating the “running total” for multiple cells. The fix here is to either use the ROWS framing option or to choose a column for the Order BY clause that is unique.
Question: Can you call LAG(LAG(ClosePrice)) to get the close price from 2 days previous?
Answer: The default behavior of lag is to go back one record. The default behavior can be overridden by using the optional parameter [offset] when writing your lag function. For example the code here would look like: LAG(ClosePrice, 2) OVER (ORDER BY DATE)
Question: Is the performance gain of framing window functions only applicable for the aggregate window functions, i.e. not important for the other window functions?
Answer: The performance gain can be achieved also with ranking and analytical window functions. Anytime an order by clause is required we can specify ROWS instead of the default behavior of RANGE. We showed a demo of using ROWS with the Last_Value analytical window function in the webinar.
Question: Will there be a bathroom break?
Answer: I don’t plan on making it three hours without taking a break!
Working with XML in SQL Server
Question: Can you query a XML File?
Answer: Absolutely. Querying an XML file is very easy to do and this is also referred to as Shredding XML. I will try to write a specific blog walking through how to do this in the coming weeks. Please note that I didn’t have enough time to show this in our extended 3 hour presentation but in the Pragmatic Works Advanced TSQL course this is covered.
Question: Can you create element centric XML but include some columns as Attributes?
Answer: This can be done easily by using the XML Path mode. XML Path generates element centric XML by default, this is in contrast to XML Auto and Raw which generates attribute centric XML. With XML Path you can convert any of the columns into attributes by simply giving it an alias name preceded by the @ symbol. For example FirstName as [@FirstName].
On-Demand Training
Question: Can we see a syllabus of the on demand courses and what material is presented in each class/section without signing up for a trial?
Answer: Please visit http://pragmaticworks.com/Training/On-Demand-Training, once there scroll down to the bottom of the page and then click on one of the individual class names to get the class outline and other information.
Question: Does the on-demand training include the ability to ask questions when something isn’t clear?
Answer: Yes, you can send questions to our training director directly. Another great feature of our On-Demand training platform is that it comes with two free hours of virtual mentoring. This is one on one time with a Pragmatic Works consultant.
Mitchell is my hero. You make the rest of us look bad when you post the followup less than 24 hours after your webinar ends. Good stuff!
Nice work Mitchell! I have watched many webcasts online (Paid or Free) and like the way you talk about SQL and can explain the language very well. Good work.
Thanks for the positive feedback!
I was really impressed with the training – thanks Mitchell
Thanks Alison, I’m glad you enjoyed it!
Hello Mitchell,
The link to download the script of Advanced TSQL Takeover Webinar is DEAD.
Thanks for letting me know Lordi, it’s a pretty old webinar, looks like over 5 years… I will see if I can find the link this weekend and update the link. I might not be able to find it since I’ve switched computers in that time, but I will definitely check!