- Home
- Tag: Access
Posts tagged Access
Tag: Access
Stored Procedure Overview
Feed: MariaDB Knowledge Base Article Feed. Author: . 저장 프로시저는 CALL문에 의해 호출되는 루틴입니다. 입력 매개변수, 출력 매개변수 혹은 입력이면서 동시에 출력인 매개변수를 가질 수 있습니다 저장 프로시저 생성 다음은 저장 프로시저 작동을 확인하는 스켈레톤 예제입니다: DELIMITER // CREATE PROCEDURE Reset_animal_count() MODIFIES SQL DATA UPDATE animal_count SET animals = 0; // DELIMITER ; 우선, 프로시저 정의 내에 기존의 구분기호인 세미콜론이 포함되기 때문에 구분기호(delimiter)를 변경합니다. 프로시저는 Reset_animal_count로 명명되었고, MODIFIES SQL DATA는 프로시저가 일종의 쓰기 동작을 수행하고 데이터를 변경할 것이라는 것을 알려줍니다.(MODIFIES SQL DATA는 단순 정보 제공용으로, 쿼리 동작에 실제로 영향을 미치지 않습니다.) 마지막으로 실제 SQL문인 UPDATE문이 위치합니다. SELECT * FROM animal_count; ... Read More
Amazon Connect now provides an out-of-the-box chat user interface for your website
Feed: Recent Announcements. Amazon Connect Chat now provides an out-of-the-box chat widget, making it easy to begin servicing your customers through chat in just a few clicks. The widget allows you to design the customer experience to align with your corporate branding by customizing the font and color scheme in the user interface. Once configured, the widget can be easily embedded for display on a website by copying and pasting a simple code snippet. The widget also provides advanced configuration options to restrict access to authenticated users or to define specific domains where the widget can be displayed. This feature ... Read More
Amazon EC2 D3 instances with dense local HDD storage now available in Asia Pacific (Singapore, Sydney and Tokyo), and Europe (Frankfurt) regions
Feed: Recent Announcements. Starting today, Amazon EC2 D3 instances, the latest generation of the dense HDD-storage instances, are available in the Asia Pacific (Singapore, Sydney and Tokyo) and Europe (Frankfurt) regions. Amazon EC2 D3 instances provide up to 48 TB of local HDD storage and are powered by 2nd Generation Intel® Xeon® Scalable (Cascade Lake) Processors with a sustained all core turbo frequency of up to 3.1 GHz. D3 instances provide up to 2.5x higher networking speed, and 45% higher disk throughput compared to D2 instances. These instances are an ideal fit for workloads including distributed / clustered file systems, ... Read More
E-Signature Solution signNow Empowers AWS Customers to Send and Sign Documents Anytime, Anywhere

Feed: AWS Partner Network (APN) Blog. Author: Jordon Hoffnagle. By Jordon Hoffnagle, Sr. Partner Marketing Manager at signNow Organizations of all sizes must figure out how to keep their employees and customers connected while keeping business moving forward—more so when face-to-face contact is likely not an option. Businesses around the world find themselves embracing this new normal of remote work, and they are searching for the right software to drive their employee and business success. To accommodate what may have just been the world’s newest industrial revolution, paper-based processes could become a thing of the past. Fortunately, software solutions are ... Read More
AWS Proton now supports tagging capabilities
Feed: Recent Announcements. AWS Proton now supports tagging of AWS Proton resources and tag-based access control. AWS Proton also tags all provisioned resources automatically with identifiers. You can now group and control your AWS Proton resources using tags, and track down all AWS resources provisioned through AWS Proton, including their costs. AWS Proton is the first fully managed application deployment service for containers and serverless. Platform engineering teams can use AWS Proton to connect and coordinate all the different tools needed for infrastructure provisioning, code deployments, monitoring, and updates. You can now add tags to any AWS Proton resource, ... Read More
AWS IoT Device SDK for Embedded C now supports over-the-air update, AWS IoT Device Defender custom metrics, and multiple shadows for a single IoT device
Feed: Recent Announcements. The over-the-air update (OTA), AWS IoT Device Defender custom metrics, and AWS IoT Device Shadow named shadow features are now generally available in AWS IoT Device SDK for Embedded C (C-SDK) version 202103.00. With this release, developers can use the C-SDK libraries to update firmware, manage device fleets, monitor fleet metrics, and create multiple shadows for their IoT device. The AWS IoT OTA library makes it easier to download and perform cryptographic verification of firmware updates. You can use the OTA library with your preferred MQTT library, HTTP library, and underlying operating system (e.g. FreeRTOS, Linux). The ... Read More
Marco Slot: Citus 10: Columnar for Postgres, rebalancer, single-node, & more
Feed: Planet PostgreSQL. Development on Citus first started around a decade ago and once a year we release a major new Citus open source version. We wanted to make number 10 something special, but I could not have imagined how truly spectacular this release would become. Citus 10 extends Postgres (12 and 13) with many new superpowers: Columnar storage for Postgres: Compress your PostgreSQL and Citus tables to reduce storage cost and speed up your analytical queries. Sharding on a single Citus node: Make your single-node Postgres server ready to scale out by sharding tables locally using Citus. Shard rebalancer ... Read More
AWS CloudFormation now supports Amazon S3 on Outposts
Feed: Recent Announcements. You can now use AWS CloudFormation templates to create and manage Amazon S3 on Outposts resources, allowing you to create buckets, endpoints and access points. Amazon S3 on Outposts delivers object storage to your on-premises AWS Outposts environment to meet local data processing and data residency needs. Using Amazon S3 APIs and features, Amazon S3 on Outposts makes it easy to store and manage data on your Outpost. AWS CloudFormation support for Amazon S3 on Outposts is available in all commercial AWS Regions where AWS Outposts is available. To start using Amazon S3 on Outposts, visit the ... Read More
Empowering every developer to innovate with Azure
Feed: Microsoft Azure Blog. Author: Donovan Brown. As developers, we are the builders of our era, creating the ideas and writing the code that helps organizations digitally transform. We pioneer innovation that disrupts countless industries and help businesses endure tough times. With every organization rethinking its business, it's more important than ever that Microsoft helps empower developers at every organization to innovate. We see companies of all sizes—from large enterprises to family-run businesses—unlocking business value and addressing the needs of their customers with innovative solutions built on the Microsoft Cloud. Each of our innovation journeys is unique, whether our goal ... Read More
How to Connect to MySQL Server

Feed: Planet MySQL; Author: Alena Subotina; In the second article of the series uncovering how to get started with MySQL, we talk about the ways of connecting to MySQL Server. You can connect to MySQL Server using MySQL Client, dbForge Studio for MySQL, and MySQL Workbench. In this article, we consider each method in detail. Connecting to MySQL Using the MySQL Command-Line ClientConnecting to MySQL Using dbForge Studio for MySQL Connecting to MySQL Using MySQL Workbench Connecting to MySQL Using the MySQL Command-Line Client In the first article of our series, we provided a detailed walkthrough outlining the aspects of how to install ... Read More
Recent Comments