STEVE ENDOW, MCP, MCT, MVP Christina Phillips, mcp, mct, mvp

Slides:



Advertisements
Similar presentations
Dual Partitioning for improved performance in VLDBs Ashwin Rao Karavadi, Rakesh Parida Microsoft IT.
Advertisements

Nick Scott | Dynamics CRM Consultant with BKD Technologies.
Steven Borg | Co-founder & Strategist, Northwest Cadence Anthony Borton | ALM Consultant, Enhance ALM.
SQL and Support Debugging Tool Paul Johnson and Graham O’Bray.
Migrating to Windows Azure SQL Database Name Title Microsoft Corporation.
Course Topics Administering SQL Server 2012 Jump Start 01 | Install and Configure SQL Server04 | Manage Data 02 | Maintain Instances and Databases05 |
Pinal Dave Mentor | Solid Quality India |
BI Reporting Tools Kalyn Kelly June 10, BI – Business Intelligence  A set of theories, methodologies, architectures, and technologies that transform.
Hosted by Experience Microsoft Dynamics Liaison for the last 3 years Dynamics GP Partner for 23 years Speaker at prior Convergences and Summits Microsoft.
Discussion Points for GP Reporting
Microsoft Tools: How2 Conduct Business with OneDrive and Skype
6/16/2018 © 2014 Microsoft Corporation. All rights reserved. Microsoft, Windows, and other product names are or may be registered trademarks and/or trademarks.
2010 Microsoft BI Conference
Summit Nashville /23/ :38 PM
SQL Server on Linux on All-Flash Arrays
Naomi Olson Account Manager.
Microsoft Connect /26/2018 1:00 AM
Azure API Management Jothi Prakash A
Mission-critical performance with Microsoft SQL Server 2016
Finding Data in Dynamics GP A Guide for Data Enthusiasts
Введение в архитектуру SharePoint 2010
Microsoft Dynamics GP SmartList Builder: Going all the Way
Toolkit for DAX Optimization
11/11/2018 5:18 AM © 2007 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered.
Enriching your BI Semantic Models with Data Analysis Expressions (DAX)
Microsoft Connect /17/2018 5:15 AM
Excel Copy/Paste Journal entries
Jim Zimmerman CTO / Lead Developer Thuzi.com ASP.NET
11/24/2018 4:51 AM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
Database Continuous Integration and Deployment with Visual Studio SQL Server Data Tools in < 10 minutes Eric Kang Program Manager.
Microsoft Connect /26/2018 6:09 PM
Microsoft Connect /1/ :31 AM
Kasper de Jonge Microsoft Corporation
MAP & ACT Pre deployment planning for Windows 7 or Server 2008 R2
Web Development in Visual Studio 2017
SPC2012 – IT-Pro 12/9/2018 © 2012 Microsoft Corporation. All rights reserved. Microsoft, Windows, and other product names are or may be registered trademarks.
12/29/ :48 AM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
Yammer for IT Tom Kretzmer Solutions Developer, Westinghouse THR1016
DAT381 Team Development with SQL Server 2005
Visual Studio 2005 Tools For Office: Creating A Multi-tier Application
Microsoft Connect /17/2019 9:55 PM
What query folding means to self-service BI projects
Welcome to Azure Notebooks
Microsoft Connect /16/ :45 PM
C++ Productivity Improvements
Working across the .NET Continuum
Microsoft Connect /23/ :38 AM
Microsoft Build /27/2019 2:26 PM © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY,
Zero to Tabular Patrick LeBlanc Data Platform Solution Architect
TechEd /28/2019 7:27 AM © 2013 Microsoft Corporation. All rights reserved. Microsoft, Windows, and other product names are or may be registered trademarks.
Smartlist designer versus SMARTLIST BUILDER
Power BI with Analysis Services
Navigating Your GP Data
Fewer cursors since SQL Server 2012 Came Along
Rapid Data Exploration:
4/20/ :00 PM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
“Hey Mom, I’ll Fix Your Computer”
Building Self-Service BI Applications Using PowerPivot
Hyper-V server deployment - Using the right tools
Enriching your BI Semantic Models with Data Analysis Expressions (DAX)
5/8/2019 3:20 AM bQuery-Tool 3.0 A new and elegant way to create queries and ad-hoc reports on your Baan/Infor ERP LN data. This Baan session is a query.
Extend Excel with Smartlist Designer
Microsoft Connect /28/2019 1:25 AM
Microsoft Connect /29/2019 1:53 AM
System Center Operations Manager Assessment Results
Live Data Streaming in Power BI
Nicole Albertson Product Manager.
Smartlist Builder Tips and Tricks
Microsoft Ignite NZ October 2016 SKYCITY, Auckland.
Microsoft Connect /14/ :11 AM
Presentation transcript:

STEVE ENDOW, MCP, MCT, MVP Christina Phillips, mcp, mct, mvp SQL 101: The Basics STEVE ENDOW, MCP, MCT, MVP Christina Phillips, mcp, mct, mvp

Steve Endow Dynamics GP MVP Solomon IV Pervasive in 1996 SQL Server since 1998, GP since 2004 1 TB database in 2005 .NET development with GP SQL query optimization SQL Server troubleshooting Steve © 2016 Dynamic Communities. All rights reserved. DYNAMIC COMMUNITIES MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

7/16/2018 10:07 AM Christina Phillips Dynamics GP User, Trainer, and Project Manager Since 2000 Dynamics GP MVP Director at BKD Technologies (BKD, LLP) SQL Reporting Services Solution and Process Design Implementation Ridiculous Troubleshooting Christina © 2016 Dynamic Communities. All rights reserved. DYNAMIC COMMUNITIES MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

Foundation You must understand GP table names http://bit.ly/GPTables http://bit.ly/gptables Leslie Vail, MVP Dynamics GP Table Names Steve © 2016 Dynamic Communities. All rights reserved. DYNAMIC COMMUNITIES MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

GP Table Reference Tools -> Resource Descriptions -> Tables 7/16/2018 10:07 AM GP Table Reference Tools -> Resource Descriptions -> Tables Steve © 2016 Dynamic Communities. All rights reserved. DYNAMIC COMMUNITIES MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

Demo Basic SQL Syntax 7/16/2018 10:07 AM Steve © 2016 Dynamic Communities. All rights reserved. DYNAMIC COMMUNITIES MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

Expand your SQL vocabulary 7/16/2018 10:07 AM Expand your SQL vocabulary Comments: -- or /* */ DISTINCT SELECT DISTINCT CUSTNMBR FROM SOP30200 RTRIM, for spaces SELECT RTRIM(CUSTNAME) LIKE WHERE CUSTNMBR LIKE ‘AA%’ LIKE Wildcards: % _ [a-f] [^a] Steve © 2016 Dynamic Communities. All rights reserved. DYNAMIC COMMUNITIES MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

Expand your SQL vocabulary 7/16/2018 10:07 AM Expand your SQL vocabulary GROUP BY with HAVING GROUP BY CUSTNMBR HAVING COUNT (*) > 10 ORDER BY ORDER BY CUSTNMBR ASC ISNULL ISNULL(ACTIDX,‘None’) IN / NOT IN WHERE ACTIDX IN (3,45,56,62) Steve © 2016 Dynamic Communities. All rights reserved. DYNAMIC COMMUNITIES MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

Demo Expand Your SQL Vocabulary 7/16/2018 10:07 AM Steve © 2016 Dynamic Communities. All rights reserved. DYNAMIC COMMUNITIES MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

SQL Views Act as dynamic, virtual tables Combine multiple tables, criteria, refer to from multiple sources Leverage standard views that come with GP Reports, SmartLists, etc Can allow split duties (data –vs- report design) Can simplify SQL security Christina © 2016 Dynamic Communities. All rights reserved. DYNAMIC COMMUNITIES MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

Demo SQL Views 7/16/2018 10:07 AM Christina © 2016 Dynamic Communities. All rights reserved. DYNAMIC COMMUNITIES MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

Accessing SQL Views and Tables 7/16/2018 10:07 AM Accessing SQL Views and Tables Excel Reports Including native Microsoft Excel SmartList Designer Views, GP Tables http://www.eonesolutions.com/SmartList-Builder/SLB-vs- SmartList-Designer/ SQL Report Builder Data Source, Data Set Report Builder Christina © 2016 Dynamic Communities. All rights reserved. DYNAMIC COMMUNITIES MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

Demo Accessing SQL Views and Tables 7/16/2018 10:07 AM Christina © 2016 Dynamic Communities. All rights reserved. DYNAMIC COMMUNITIES MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

Questions? Steve Endow Christina Phillips 7/16/2018 10:07 AM Questions? Steve Endow @SteveEndow steveendow@gmail.com Christina Phillips @CPLaughsALot cphillips@bkd.com https://dynamicsgpland.blogspot.com/ Christina and Steve © 2016 Dynamic Communities. All rights reserved. DYNAMIC COMMUNITIES MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.