Eric Flamm Flamm Consulting, Inc.

Slides:



Advertisements
Similar presentations
Database Management Using Microsoft Access Xinhua Chen, Ph.D. Chinese Association of Professionals in Science and Technology March 23, 2003.
Advertisements

Unknown/uncontrolled data applications Bad/broken end-user applications Inefficient business processes Backlog of IT requests No data access control/backup.
Stored procedures and views You can see definitions for stored procedures and views in the demo databases but you can’t change them. For views, expand.
 Pages made using data in a database  Use scripting languages  Use of RDMS  Look and feel by templates, CSS  High scaling  Admin pages as back end.
Virtual techdays INDIA │ august 2010 Building ASP.NET applications using SQL Server Compact Chaitanya Solapurkar │ Partner Technical Consultant,
Software development. Chapter 5 – Data management.
1 Working with MS SQL Server II. 2 The sqlcmd Utility Command line utility for MS SQL Server databases. Previous version called osql Available on classroom.
OM. Brad Gall Senior Consultant
8 Chapter Eight Server-side Scripts. 8 Chapter Objectives Create dynamic Web pages that retrieve and display database data using Active Server Pages Process.
SQL Server Integration Services (SSIS) Presented by Tarek Ghazali IT Technical Specialist Microsoft SQL Server (MVP) Microsoft Certified Technology Specialist.
Microsoft Azure Introduction ISYS 512. Microsoft Azure Microsoft Azure is a cloud.
Introduction to ADO.Net and Visual Studio Database Tools ISYS 512.
Basics of Web Databases With the advent of Web database technology, Web pages are no longer static, but dynamic with connection to a back-end database.
SQL HW1 Turn in as a hardcopy at the start of next class period. You may work this assignment in groups.
DB Libraries: An Alternative to DBMS By Matt Stegman November 22, 2005.
What’s New? – BCS 2013 Brett Lonsdale.  Co-founder of Lightning Tools  One of the hosts on the SharePoint Pod Show  Co-organizer of SharePoint Saturday.
Microsoft ASP.net Session Samar Samy Microsoft Student Partner.
1 Working with MS SQL Server Textbook Chapter 14.
Universiti Utara Malaysia Chapter 3 Introduction to ASP.NET 3.5.
© FPT SOFTWARE – TRAINING MATERIAL – Internal use 04e-BM/NS/HDCV/FSOFT v2/3 Working with MSSQL Server Code:G0-C# Version: 1.0 Author: Pham Trung Hai CTD.
CSCI 6962: Server-side Design and Programming Database Manipulation in ASP.
General rules 1. Rule: 2. Rule: 3. Rule: 10. Rule: Ask questions ……………………. 11. Rule: I do not know your skill. If I tell you things you know, please stop.
How* to Win the #BestMicrosoftHack Shahed Chowdhuri Sr. Technical WakeUpAndCode.com *Hint: Use the Cloud.
Intro to Datazen.
Introduction TO Network Administration
Getting Started with Oracle Berkeley DB 11gR2 and ADO.NET
CMPE 226 Database Systems April 19 Class Meeting Department of Computer Engineering San Jose State University Spring 2016 Instructor: Ron Mak
Blog: R YOU READY FOR.
ASP.NET Core* Shahed Chowdhuri Sr. Technical WakeUpAndCode.com Deploying Your Web Apps * aka ASP.NET 5 before RC1.
Microsoft Connect /23/ :39 PM
Xamarin Development with
Reports and Translations
Visual Studio Database Tools (aka SQL Server Data Tools)
Working with SQL Server for Linux Cross-Platform
Make Power BI Your Own with the Power BI APIs
Data-driven serverless apps with Azure functions
Easily manage SQL everywhere from anywhere with SQL tools
Introduction to .NET Core
Make Power BI Your Own with the Power BI APIs
Easily manage SQL everywhere from anywhere with SQL Tools
The Transition to Modern Office Add-in Development
Did your feature got in, out or planned?
INSTALLING PYTHON 3 COSC 1306 Fall 2017.
PHP / MySQL Introduction
Make Power BI Your Own with the Power BI APIs
Intro to SQL Operations Studio
Intro to SQL Operations Studio
Entity Framework Core.
Migrating your local database to Azure SQL DB
Make Power BI Your Own with the Power BI APIs
Visual Studio Database Tools (aka SQL Server Data Tools)
12/5/ :36 AM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
The Mac DBA, using Docker and SQL Operations Studio
Entity Framework Core (EF Core)
Visual Studio Principal Program Manager.
Intro to SQL Operations Studio
Cross-Platform, Cloud and On-Premise Database Tool
Visual Studio Code for PowerShell
SQL Operations Studio A Test Drive
Cross-Platform, Cloud and On-Premise Database Tool
Sayed Ibrahim Hashimi Program Manager Microsoft Corporation
Mario…Take My Data To The Cloud!
Rich Benner SQL Server Performance Richbenner.com.
1. Azure Data Explorer Azure Data Explorer enables rich data exploration over raw, structured, and semi-structured data delivering fast time to insight.
For Exchange Migrations
SQL Saturday Madison, April 8th
Ready Pre-day Azure Monitoring Workshop
DataBase Application .NET
ASP.NET Core 2.0 The Future of Web Apps Shahed Chowdhuri
Introduction to ADO.Net and Visual Studio Database Tools.
Presentation transcript:

Eric Flamm Flamm Consulting, Inc. Use Visual Studio Code to Access SQL Server from Windows (or Mac, or Linux, or ...)

Agenda Intro About VS Code and the MS SQL Extension Demos Resources Q & A

About Me Independent Business Intelligence/Analytics Consultant MCP: Querying Microsoft SQL Server 2012 Member of TAG Data Science and Analytics Society Board Active Volunteer with Atlanta Microsoft Database Forum (local PASS Chapter) Organizing Committee for Atlanta SQL Saturday since 2010 Contact Info: E-mail: eric@flammconsulting.com Mobile: (678) 524-4256 Twitter: @eflamm Web: www.flammconsulting.com

Poll Heard of VS Code? Use VS Code? Used VS Code with MS SQL? What… is the air-speed velocity of an unladen swallow?

About VS Code Home Page: code.visualstudio.com/ Built on Electron Shell using Python on Node.js Built to support Javascript/TypeScript development 1000’s of extensions provide support for multiple languages/development environments

About the MS SQL Extension Home Page: docs.microsoft.com/en-us/sql/linux/sql-server-linux-develop-use-vscode The MS SQL extension enables you to connect to SQL Server, compose and execute T-SQL Queries, and view the results

How to Get VS Code Windows – Download and run the installer from the VS Code Getting Started page Linux – Depends on the distro – download the appropriate package, update the package store, and install with yum or apt‐get Mac – download the VS Code archive from https://code.visualstudio.com/docs/setup/mac and expand it to retrieve the app launcher

How to get the MS SQL Extension Open the Command Palette, select Install Extension, enter mssql, and click Install On Mac, you need OpenSSL for .net Core (used by mssql extension) – instructions are on the mssql extension page Older versions of Windows require the Windows 10 Universal C Runtime (WindowsUCRT.zip)

Demos Create a SQL Server Connection Object Connect to SQL Server Create a database Create a table Load some data Retrieve some data Save results to JSON file Demos - alternate between Windows and Linux Create a connection to Azure SQL server (on both platforms) Open a new SQL document and connect to server (show connection info on status bar) Create Database for Grail Trivia Create Table for Grail Trivia Load Trivia items into table Retrieve Trivia items from table

VS Code Settings "server": "uxjf04zebq.database.windows.net", "database": "", "authenticationType": "SqlLogin", "user": "eflamm", "password": "", "savePassword": false, "profileName": "azuresql", "connectTimeout": 30, "encrypt": true, "applicationName": "vscode-mssql"

Resources Use Visual Studio Code to connect and query data (https://docs.microsoft.com/en-us/azure/sql-database/sql-database-connect-query-vscode)