{"id":4316,"date":"2014-02-19T09:50:23","date_gmt":"2014-02-19T17:50:23","guid":{"rendered":"http:\/\/3.209.169.194\/blogs\/paul\/?p=4316"},"modified":"2017-04-13T12:47:38","modified_gmt":"2017-04-13T19:47:38","slug":"send-wait-stats-get-advice-30-days-free-pluralsight-return","status":"publish","type":"post","link":"https:\/\/www.sqlskills.com\/blogs\/paul\/send-wait-stats-get-advice-30-days-free-pluralsight-return\/","title":{"rendered":"Send me your wait stats and get my advice and 30 days of free Pluralsight in return"},"content":{"rendered":"<p>[Edit: 3\/25\/14 No more codes left &#8211; thanks for all the data! &#8211; please don&#8217;t send any more.]<\/p>\n<p>Yes, you read that correctly. Call me crazy, but I&#8217;ve been wanting to do this for a while.<\/p>\n<p><strong>Here&#8217;s the deal:<\/strong><\/p>\n<ol>\n<li>You run the code from this post that creates a 24-hour snapshot of the wait stats on your server. (You can do it on as many servers as you want! Or multiple times on the same server. Seriously, the more data the better.)<\/li>\n<li>You send me the wait stats info in email.<\/li>\n<li>I&#8217;ll give you some feedback and insight on your wait stats.<\/li>\n<li>I&#8217;ll send the first 500 of you a code to get 30 days of free access to all 100+ hours of <a href=\"https:\/\/www.sqlskills.com\/sql-server-training\/online-training\/\" target=\"_blank\">SQLskills Pluralsight training classes<\/a>.<\/li>\n<li>I&#8217;ll also editorialize the results (possibly over several posts) in April<\/li>\n<\/ol>\n<p>I was going to work with Pluralsight to get codes for just my <a href=\"https:\/\/www.pluralsight.com\/courses\/sqlserver-waits\" target=\"_blank\">SQL Server: Performance Troubleshooting Using Wait Statistics course<\/a>, but they&#8217;re cool with giving away a month of all our courses. Nice!<\/p>\n<p><strong>What&#8217;s the catch?<\/strong> There is no catch. I get lots of real-life data, you get lots of real-life training. No credit-card required.<\/p>\n<p><strong>Why am I doing this?<\/strong>\u00a0I *really* like looking at wait statistics data (kind of like Jonathan with his unhealthy obsession with analyzing deadlocks) and it&#8217;s been more than 3 years since my last huge wait stats survey. Also I *really* like helping people understand what wait statistics mean, I *really* like being sleep-deprived :-), and I&#8217;d *really* like to show you how awesome\u00a0<a href=\"https:\/\/www.sqlskills.com\/sql-server-training\/online-training\/\" target=\"_blank\">our online training courses<\/a>\u00a0are.<\/p>\n<p><strong>When does this offer end?<\/strong> You&#8217;ve got until the end of March to send me your wait stats info.<\/p>\n<p><strong>Rules?<\/strong> One code per email address that sends me wait stats, no matter how many servers you send in &#8211; I&#8217;ve got a limited supply. Please don&#8217;t post as a comment with the stats in (I&#8217;ll delete them) &#8211; email only. I&#8217;ll send you the code and info on how to redeem it.<\/p>\n<p>Use the T-SQL code below please (or grab the zip file from <a href=\"https:\/\/www.sqlskills.com\/blogs\/paul\/wp-content\/uploads\/2014\/02\/waitstats2014.zip\">here<\/a>), and leave the <em>WAITFOR<\/em> set to 24 hours. <a href=\"mailto:paul@sqlskills.com?subject=My 24 hours of wait stats\">Send me an email<\/a>\u00a0[Edit: the survey&#8217;s done now &#8211; please don&#8217;t send any more data] with the results in plain text or a spreadsheet. Everybody wins.<\/p>\n<p>Look forward to hearing from you!<\/p>\n<p>PS There is no perf hit from running this code, or any nasty side-effect. It simply creates two snapshots of the\u00a0<em>sys.dm_os_wait_stats<\/em>\u00a0output 24 hours apart.<\/p>\n<p>PPS Thanks to those who pointed out the typo that crept in between coding and posting &#8211; sorry about that.<\/p>\n<pre class=\"brush: sql; title: ; toolbar: true; wrap-lines: true; notranslate\" title=\"\">\r\n\/*============================================================================\r\n  File:     WaitStats2014.sql\r\n\r\n  Summary:  24-hour snapshot of wait stats\r\n\r\n  SQL Server Versions: 2005 onwards\r\n------------------------------------------------------------------------------\r\n  Written by Paul S. Randal, SQLskills.com\r\n\r\n  (c) 2014, SQLskills.com. All rights reserved.\r\n\r\n  For more scripts and sample code, check out\r\n    http:\/\/www.SQLskills.com\r\n\r\n  You may alter this code for your own *non-commercial* purposes. You may\r\n  republish altered code as long as you include this copyright and give due\r\n  credit, but you must obtain prior permission before blogging this code.\r\n\r\n  THIS CODE AND INFORMATION ARE PROVIDED &quot;AS IS&quot; WITHOUT WARRANTY OF\r\n  ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED\r\n  TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\/OR FITNESS FOR A\r\n  PARTICULAR PURPOSE.\r\n============================================================================*\/\r\n\r\nIF EXISTS (SELECT * FROM &#x5B;tempdb].&#x5B;sys].&#x5B;objects]\r\n\tWHERE &#x5B;name] = N'##SQLskillsStats1')\r\n\tDROP TABLE &#x5B;##SQLskillsStats1];\r\n\r\nIF EXISTS (SELECT * FROM &#x5B;tempdb].&#x5B;sys].&#x5B;objects]\r\n\tWHERE &#x5B;name] = N'##SQLskillsStats2')\r\n\tDROP TABLE &#x5B;##SQLskillsStats2];\r\nGO\r\n\r\nSELECT &#x5B;wait_type], &#x5B;waiting_tasks_count], &#x5B;wait_time_ms],\r\n       &#x5B;max_wait_time_ms], &#x5B;signal_wait_time_ms]\r\nINTO ##SQLskillsStats1\r\nFROM sys.dm_os_wait_stats;\r\nGO\r\n\r\nWAITFOR DELAY '23:59:59';\r\nGO\r\n\r\nSELECT &#x5B;wait_type], &#x5B;waiting_tasks_count], &#x5B;wait_time_ms],\r\n       &#x5B;max_wait_time_ms], &#x5B;signal_wait_time_ms]\r\nINTO ##SQLskillsStats2\r\nFROM sys.dm_os_wait_stats;\r\nGO\r\n\r\nWITH &#x5B;DiffWaits] AS\r\n(SELECT\r\n-- Waits that weren't in the first snapshot\r\n\t\t&#x5B;ts2].&#x5B;wait_type],\r\n\t\t&#x5B;ts2].&#x5B;wait_time_ms],\r\n\t\t&#x5B;ts2].&#x5B;signal_wait_time_ms],\r\n\t\t&#x5B;ts2].&#x5B;waiting_tasks_count]\r\n\tFROM &#x5B;##SQLskillsStats2] AS &#x5B;ts2]\r\n\tLEFT OUTER JOIN &#x5B;##SQLskillsStats1] AS &#x5B;ts1]\r\n\t\tON &#x5B;ts2].&#x5B;wait_type] = &#x5B;ts1].&#x5B;wait_type]\r\n\tWHERE &#x5B;ts1].&#x5B;wait_type] IS NULL\r\n\tAND &#x5B;ts2].&#x5B;wait_time_ms] &gt; 0\r\nUNION\r\nSELECT\r\n-- Diff of waits in both snapshots\r\n\t\t&#x5B;ts2].&#x5B;wait_type],\r\n\t\t&#x5B;ts2].&#x5B;wait_time_ms] - &#x5B;ts1].&#x5B;wait_time_ms] AS &#x5B;wait_time_ms],\r\n\t\t&#x5B;ts2].&#x5B;signal_wait_time_ms] - &#x5B;ts1].&#x5B;signal_wait_time_ms] AS &#x5B;signal_wait_time_ms],\r\n\t\t&#x5B;ts2].&#x5B;waiting_tasks_count] - &#x5B;ts1].&#x5B;waiting_tasks_count] AS &#x5B;waiting_tasks_count]\r\n\tFROM &#x5B;##SQLskillsStats2] AS &#x5B;ts2]\r\n\tLEFT OUTER JOIN &#x5B;##SQLskillsStats1] AS &#x5B;ts1]\r\n\t\tON &#x5B;ts2].&#x5B;wait_type] = &#x5B;ts1].&#x5B;wait_type]\r\n\tWHERE &#x5B;ts1].&#x5B;wait_type] IS NOT NULL\r\n\tAND &#x5B;ts2].&#x5B;waiting_tasks_count] - &#x5B;ts1].&#x5B;waiting_tasks_count] &gt; 0\r\n\tAND &#x5B;ts2].&#x5B;wait_time_ms] - &#x5B;ts1].&#x5B;wait_time_ms] &gt; 0),\r\n&#x5B;Waits] AS\r\n\t(SELECT\r\n\t\t&#x5B;wait_type],\r\n\t\t&#x5B;wait_time_ms] \/ 1000.0 AS &#x5B;WaitS],\r\n\t\t(&#x5B;wait_time_ms] - &#x5B;signal_wait_time_ms]) \/ 1000.0 AS &#x5B;ResourceS],\r\n\t\t&#x5B;signal_wait_time_ms] \/ 1000.0 AS &#x5B;SignalS],\r\n\t\t&#x5B;waiting_tasks_count] AS &#x5B;WaitCount],\r\n\t\t100.0 * &#x5B;wait_time_ms] \/ SUM (&#x5B;wait_time_ms]) OVER() AS &#x5B;Percentage],\r\n\t\tROW_NUMBER() OVER(ORDER BY &#x5B;wait_time_ms] DESC) AS &#x5B;RowNum]\r\n\tFROM &#x5B;DiffWaits]\r\n\tWHERE &#x5B;wait_type] NOT IN (\r\n        N'BROKER_EVENTHANDLER',         N'BROKER_RECEIVE_WAITFOR',\r\n        N'BROKER_TASK_STOP',            N'BROKER_TO_FLUSH',\r\n        N'BROKER_TRANSMITTER',          N'CHECKPOINT_QUEUE',\r\n        N'CHKPT',\t\t\t\t\t\tN'CLR_AUTO_EVENT',\r\n        N'CLR_MANUAL_EVENT',            N'CLR_SEMAPHORE',\r\n        N'DBMIRROR_DBM_EVENT',          N'DBMIRROR_EVENTS_QUEUE',\r\n        N'DBMIRROR_WORKER_QUEUE',       N'DBMIRRORING_CMD',\r\n        N'DIRTY_PAGE_POLL',\t\t\t\tN'DISPATCHER_QUEUE_SEMAPHORE',\r\n        N'EXECSYNC',\t\t\t\t\tN'FSAGENT',\r\n        N'FT_IFTS_SCHEDULER_IDLE_WAIT',\tN'FT_IFTSHC_MUTEX',\r\n        N'HADR_CLUSAPI_CALL',           N'HADR_FILESTREAM_IOMGR_IOCOMPLETION',\r\n        N'HADR_LOGCAPTURE_WAIT',        N'HADR_NOTIFICATION_DEQUEUE',\r\n        N'HADR_TIMER_TASK',\t\t\t\tN'HADR_WORK_QUEUE',\r\n        N'KSOURCE_WAKEUP',\t\t\t\tN'LAZYWRITER_SLEEP',\r\n        N'LOGMGR_QUEUE',\t\t\t\tN'ONDEMAND_TASK_QUEUE',\r\n        N'PWAIT_ALL_COMPONENTS_INITIALIZED',\r\n        N'QDS_PERSIST_TASK_MAIN_LOOP_SLEEP',\r\n        N'QDS_CLEANUP_STALE_QUERIES_TASK_MAIN_LOOP_SLEEP',\r\n        N'REQUEST_FOR_DEADLOCK_SEARCH',\tN'RESOURCE_QUEUE',\r\n        N'SERVER_IDLE_CHECK',           N'SLEEP_BPOOL_FLUSH',\r\n        N'SLEEP_DBSTARTUP',\t\t\t\tN'SLEEP_DCOMSTARTUP',\r\n        N'SLEEP_MASTERDBREADY',         N'SLEEP_MASTERMDREADY',\r\n        N'SLEEP_MASTERUPGRADED',        N'SLEEP_MSDBSTARTUP',\r\n        N'SLEEP_SYSTEMTASK',            N'SLEEP_TASK',\r\n        N'SLEEP_TEMPDBSTARTUP',         N'SNI_HTTP_ACCEPT',\r\n        N'SP_SERVER_DIAGNOSTICS_SLEEP',\tN'SQLTRACE_BUFFER_FLUSH',\r\n        N'SQLTRACE_INCREMENTAL_FLUSH_SLEEP',\r\n        N'SQLTRACE_WAIT_ENTRIES',       N'WAIT_FOR_RESULTS',\r\n        N'WAITFOR',\t\t\t\t\t\tN'WAITFOR_TASKSHUTDOWN',\r\n        N'WAIT_XTP_HOST_WAIT',          N'WAIT_XTP_OFFLINE_CKPT_NEW_LOG',\r\n        N'WAIT_XTP_CKPT_CLOSE',         N'XE_DISPATCHER_JOIN',\r\n        N'XE_DISPATCHER_WAIT',          N'XE_TIMER_EVENT')\r\n\t)\r\nSELECT\r\n\t&#x5B;W1].&#x5B;wait_type] AS &#x5B;WaitType],\r\n\tCAST (&#x5B;W1].&#x5B;WaitS] AS DECIMAL (16, 2)) AS &#x5B;Wait_S],\r\n\tCAST (&#x5B;W1].&#x5B;ResourceS] AS DECIMAL (16, 2)) AS &#x5B;Resource_S],\r\n\tCAST (&#x5B;W1].&#x5B;SignalS] AS DECIMAL (16, 2)) AS &#x5B;Signal_S],\r\n\t&#x5B;W1].&#x5B;WaitCount] AS &#x5B;WaitCount],\r\n\tCAST (&#x5B;W1].&#x5B;Percentage] AS DECIMAL (5, 2)) AS &#x5B;Percentage],\r\n\tCAST ((&#x5B;W1].&#x5B;WaitS] \/ &#x5B;W1].&#x5B;WaitCount]) AS DECIMAL (16, 4)) AS &#x5B;AvgWait_S],\r\n\tCAST ((&#x5B;W1].&#x5B;ResourceS] \/ &#x5B;W1].&#x5B;WaitCount]) AS DECIMAL (16, 4)) AS &#x5B;AvgRes_S],\r\n\tCAST ((&#x5B;W1].&#x5B;SignalS] \/ &#x5B;W1].&#x5B;WaitCount]) AS DECIMAL (16, 4)) AS &#x5B;AvgSig_S]\r\nFROM &#x5B;Waits] AS &#x5B;W1]\r\nINNER JOIN &#x5B;Waits] AS &#x5B;W2]\r\n\tON &#x5B;W2].&#x5B;RowNum] &lt;= &#x5B;W1].&#x5B;RowNum]\r\nGROUP BY &#x5B;W1].&#x5B;RowNum], &#x5B;W1].&#x5B;wait_type], &#x5B;W1].&#x5B;WaitS],\r\n\t&#x5B;W1].&#x5B;ResourceS], &#x5B;W1].&#x5B;SignalS], &#x5B;W1].&#x5B;WaitCount], &#x5B;W1].&#x5B;Percentage]\r\nHAVING SUM (&#x5B;W2].&#x5B;Percentage]) - &#x5B;W1].&#x5B;Percentage] &lt; 95; -- percentage threshold\r\nGO\r\n\r\n-- Cleanup\r\nIF EXISTS (SELECT * FROM &#x5B;tempdb].&#x5B;sys].&#x5B;objects]\r\n\tWHERE &#x5B;name] = N'##SQLskillsStats1')\r\n\tDROP TABLE &#x5B;##SQLskillsStats1];\r\n\r\nIF EXISTS (SELECT * FROM &#x5B;tempdb].&#x5B;sys].&#x5B;objects]\r\n\tWHERE &#x5B;name] = N'##SQLskillsStats2')\r\n\tDROP TABLE &#x5B;##SQLskillsStats2];\r\nGO\r\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>[Edit: 3\/25\/14 No more codes left &#8211; thanks for all the data! &#8211; please don&#8217;t send any more.] Yes, you read that correctly. Call me crazy, but I&#8217;ve been wanting to do this for a while. Here&#8217;s the deal: You run the code from this post that creates a 24-hour snapshot of the wait stats [&hellip;]<\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[69,97,101],"tags":[],"class_list":["post-4316","post","type-post","status-publish","format-standard","hentry","category-pluralsight","category-training","category-wait-stats"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Send me your wait stats and get my advice and 30 days of free Pluralsight in return - Paul S. Randal<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.sqlskills.com\/blogs\/paul\/send-wait-stats-get-advice-30-days-free-pluralsight-return\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Send me your wait stats and get my advice and 30 days of free Pluralsight in return - Paul S. Randal\" \/>\n<meta property=\"og:description\" content=\"[Edit: 3\/25\/14 No more codes left &#8211; thanks for all the data! &#8211; please don&#8217;t send any more.] Yes, you read that correctly. Call me crazy, but I&#8217;ve been wanting to do this for a while. Here&#8217;s the deal: You run the code from this post that creates a 24-hour snapshot of the wait stats [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.sqlskills.com\/blogs\/paul\/send-wait-stats-get-advice-30-days-free-pluralsight-return\/\" \/>\n<meta property=\"og:site_name\" content=\"Paul S. Randal\" \/>\n<meta property=\"article:published_time\" content=\"2014-02-19T17:50:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-04-13T19:47:38+00:00\" \/>\n<meta name=\"author\" content=\"Paul Randal\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Paul Randal\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.sqlskills.com\/blogs\/paul\/send-wait-stats-get-advice-30-days-free-pluralsight-return\/\",\"url\":\"https:\/\/www.sqlskills.com\/blogs\/paul\/send-wait-stats-get-advice-30-days-free-pluralsight-return\/\",\"name\":\"Send me your wait stats and get my advice and 30 days of free Pluralsight in return - Paul S. Randal\",\"isPartOf\":{\"@id\":\"https:\/\/www.sqlskills.com\/blogs\/paul\/#website\"},\"datePublished\":\"2014-02-19T17:50:23+00:00\",\"dateModified\":\"2017-04-13T19:47:38+00:00\",\"author\":{\"@id\":\"https:\/\/www.sqlskills.com\/blogs\/paul\/#\/schema\/person\/ffcec826c18782e1e0adf173826a7fce\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.sqlskills.com\/blogs\/paul\/send-wait-stats-get-advice-30-days-free-pluralsight-return\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.sqlskills.com\/blogs\/paul\/send-wait-stats-get-advice-30-days-free-pluralsight-return\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.sqlskills.com\/blogs\/paul\/send-wait-stats-get-advice-30-days-free-pluralsight-return\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.sqlskills.com\/blogs\/paul\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Send me your wait stats and get my advice and 30 days of free Pluralsight in return\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.sqlskills.com\/blogs\/paul\/#website\",\"url\":\"https:\/\/www.sqlskills.com\/blogs\/paul\/\",\"name\":\"Paul S. Randal\",\"description\":\"In Recovery...\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.sqlskills.com\/blogs\/paul\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.sqlskills.com\/blogs\/paul\/#\/schema\/person\/ffcec826c18782e1e0adf173826a7fce\",\"name\":\"Paul Randal\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.sqlskills.com\/blogs\/paul\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/0b6a266bba2f088f2551ef529293001bd73bf026bc1908b9866728c062beeeb6?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/0b6a266bba2f088f2551ef529293001bd73bf026bc1908b9866728c062beeeb6?s=96&d=mm&r=g\",\"caption\":\"Paul Randal\"},\"sameAs\":[\"http:\/\/3.209.169.194\/blogs\/paul\"],\"url\":\"https:\/\/www.sqlskills.com\/blogs\/paul\/author\/paul\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Send me your wait stats and get my advice and 30 days of free Pluralsight in return - Paul S. Randal","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.sqlskills.com\/blogs\/paul\/send-wait-stats-get-advice-30-days-free-pluralsight-return\/","og_locale":"en_US","og_type":"article","og_title":"Send me your wait stats and get my advice and 30 days of free Pluralsight in return - Paul S. Randal","og_description":"[Edit: 3\/25\/14 No more codes left &#8211; thanks for all the data! &#8211; please don&#8217;t send any more.] Yes, you read that correctly. Call me crazy, but I&#8217;ve been wanting to do this for a while. Here&#8217;s the deal: You run the code from this post that creates a 24-hour snapshot of the wait stats [&hellip;]","og_url":"https:\/\/www.sqlskills.com\/blogs\/paul\/send-wait-stats-get-advice-30-days-free-pluralsight-return\/","og_site_name":"Paul S. Randal","article_published_time":"2014-02-19T17:50:23+00:00","article_modified_time":"2017-04-13T19:47:38+00:00","author":"Paul Randal","twitter_misc":{"Written by":"Paul Randal","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.sqlskills.com\/blogs\/paul\/send-wait-stats-get-advice-30-days-free-pluralsight-return\/","url":"https:\/\/www.sqlskills.com\/blogs\/paul\/send-wait-stats-get-advice-30-days-free-pluralsight-return\/","name":"Send me your wait stats and get my advice and 30 days of free Pluralsight in return - Paul S. Randal","isPartOf":{"@id":"https:\/\/www.sqlskills.com\/blogs\/paul\/#website"},"datePublished":"2014-02-19T17:50:23+00:00","dateModified":"2017-04-13T19:47:38+00:00","author":{"@id":"https:\/\/www.sqlskills.com\/blogs\/paul\/#\/schema\/person\/ffcec826c18782e1e0adf173826a7fce"},"breadcrumb":{"@id":"https:\/\/www.sqlskills.com\/blogs\/paul\/send-wait-stats-get-advice-30-days-free-pluralsight-return\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.sqlskills.com\/blogs\/paul\/send-wait-stats-get-advice-30-days-free-pluralsight-return\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.sqlskills.com\/blogs\/paul\/send-wait-stats-get-advice-30-days-free-pluralsight-return\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.sqlskills.com\/blogs\/paul\/"},{"@type":"ListItem","position":2,"name":"Send me your wait stats and get my advice and 30 days of free Pluralsight in return"}]},{"@type":"WebSite","@id":"https:\/\/www.sqlskills.com\/blogs\/paul\/#website","url":"https:\/\/www.sqlskills.com\/blogs\/paul\/","name":"Paul S. Randal","description":"In Recovery...","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.sqlskills.com\/blogs\/paul\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.sqlskills.com\/blogs\/paul\/#\/schema\/person\/ffcec826c18782e1e0adf173826a7fce","name":"Paul Randal","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sqlskills.com\/blogs\/paul\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/0b6a266bba2f088f2551ef529293001bd73bf026bc1908b9866728c062beeeb6?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0b6a266bba2f088f2551ef529293001bd73bf026bc1908b9866728c062beeeb6?s=96&d=mm&r=g","caption":"Paul Randal"},"sameAs":["http:\/\/3.209.169.194\/blogs\/paul"],"url":"https:\/\/www.sqlskills.com\/blogs\/paul\/author\/paul\/"}]}},"_links":{"self":[{"href":"https:\/\/www.sqlskills.com\/blogs\/paul\/wp-json\/wp\/v2\/posts\/4316","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.sqlskills.com\/blogs\/paul\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.sqlskills.com\/blogs\/paul\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.sqlskills.com\/blogs\/paul\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sqlskills.com\/blogs\/paul\/wp-json\/wp\/v2\/comments?post=4316"}],"version-history":[{"count":0,"href":"https:\/\/www.sqlskills.com\/blogs\/paul\/wp-json\/wp\/v2\/posts\/4316\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.sqlskills.com\/blogs\/paul\/wp-json\/wp\/v2\/media?parent=4316"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.sqlskills.com\/blogs\/paul\/wp-json\/wp\/v2\/categories?post=4316"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.sqlskills.com\/blogs\/paul\/wp-json\/wp\/v2\/tags?post=4316"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}