Context … for projects and MyDB

Slides:



Advertisements
Similar presentations
OpenVMS System Management A different perspective by Andy Park TrueBit b.v.
Advertisements

Presented By: Erez RokahErez Goldshide Supervisor:Victor Kulikov Networked Software Systems Laboratory Department of Electrical Engineering Technion -
Extras Plus! Pepper. Objectives extra knowledge Cookies Picture handling when creating site.
Threads Clients Servers Code Migration Software Agents Summary
Introduction to Databases CIS 5.2. Where would you find info about yourself stored in a computer? College Physician’s office Library Grocery Store Dentist’s.
Tutorial 3: Adding and Formatting Text. 2 Objectives Session 3.1 Type text into a page Copy text from a document and paste it into a page Check for spelling.
What Are File Maintenance Techniques and Validation Techniques?
Operating Systems Networking for Home and Small Businesses – Chapter 2 – Introduction To Networking.
IT security By Tilly Gerlack.
Course ILT Proofing and printing documents Unit objectives Automatically or manually review and correct spelling and grammar Preview how a document will.
Eurotrace Hands-On The Eurotrace File System. 2 The Eurotrace file system Under MS ACCESS EUROTRACE generates several different files when you create.
…using Git/Tortoise Git
Access 2013 Microsoft Access 2013 is a database application that is ideal for gathering and understanding data that’s been collected on just about anything.
Wikis. Some resources  What is a wiki:  How do you make a PBWorks account:
DCL/1 Data Control Language Objectives –To learn about the security mechanisms implemented in an RDBMS and how to use them Contents –Identifying Users.
How to install Office 2007  Step 1: Insert the Microsoft Office 2007 Enterprise CD. If the Setup Wizard does not automatically begin, then click Start.
CSE 219 Computer Science III CVS
May 7, We manage documents and their changes with versioning and check out/check in procedures.
Sole archivists seminar April 2011 Arrangement and description.
Context in practice … and what’s new Lorentz center, Wednesday, 21 November 2006.
1 / 10 © 2006, Universal Tax Systems, Inc. All Rights Reserved. Using TaxWise Explorer TaxWise Explorer Objectives –In this chapter you will learn how.
Setting Up TGO User Accounts. Creating User Accounts for Other Users If your company has other users who need to use the Active Orders system, your company’s.
Package & Deploy. OBJECTIVES Package Deploy Way to package.
Source Control Saves Lives. Lorna Mitchell Source Control Saves Lives BarCamp Leeds What is Source Control? Central filestore Change history Audit trail.
The Diagnostic Pathfinder System Introduction Getting Started.
Accessible Web Publishing Wizard For Microsoft® Office E-Series Webcasts Best Practices for Microsoft® PowerPoint.
Practice CS Project Management Amy McCarty Education Services.
Chapter 1 © 2013 Pearson Education, Inc. Publishing as Prentice Hall Chapter 1: The Database Environment and Development Process Modern Database Management.
XA Advanced Development with Extender and Enterprise Integrator: RPG is so 1980s… Denise Luther Senior Technical Consultant 704.
Understanding inFUSION User Roles. Super Administrator Administrator File Sender File Receiver Internal File Receiver inFUSION Roles When you start using.
1 Meta-Door 2.0 An online management tool for FGDC-compliant metadata, MarineXml metadata, and SensorML.
ATRK & CMC—The Perfect Pair. Presentation Outline Brief Introduction CMC Screen & The 4 Definitions of Communications Management ATRK Screen Tying together.
Prototype Security New Feature: Send Mass & Activity Code.
Source Control Dr. Scott Schaefer. Version Control Systems Allow for maintenance and archiving of multiple versions of code / other files Designed for.
Best Practices for Workflow, Dialogs and Business Process Flows
Do-more Technical Training
SECTION 1: Add-ons to PowerPoint
Source Control Dr. Scott Schaefer.
Introduction To Database Systems
COOKIES.
Grid Metadata Management
Using Wikis in the Classroom
Microsoft Build /22/2018 3:05 AM © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY,
A Complete Business Productivity Suite
Software Development Initiation Planning Design Analysis Development
Getting Started with Git and Bitbucket
CRM 2016 Solutions and Package Deployer
© 2016 Blackboard Inc. All rights reserved..
On transactions, and Atomic Operations
Fiserv eStatements FAQs What kinds of statements are available online?
برنامه آموزش مديريت زمان در يک هفته مديريت سايت دانشکده کامپيوتر
Tracking new discoveries using file history
Tonga Institute of Higher Education
TIME MANAGEMENT مديريت زمان
Microsoft Visual Source Safe How & Why
On transactions, and Atomic Operations
DATABASE SECURITY For CSCL (BIM).
Receivables Management Customer Master Records
Operating Systems Networking for Home and Small Businesses – Chapter 2 – Introduction To Networking.
Topic 12 Lesson 1 – Data and databases
Quick reference: entering a requisition In escape RECEIVING AN ITEM
Year 10 & 11 Programming Similar, But Different!
How to manage changes with the Versioning Specification
Dreamweaver.
Databases This topic looks at the basic concept of a database, the key features and benefits of a Database Management System (DBMS) and the basic theory.
Top 10 OneDrive Tips.
Business Zone - Clearing your Cache
Unit J: Creating a Database
What is a Thread? A thread is similar to a process, but it typically consists of just the flow of control. Multiple threads use the address space of a.
Adding Media to Courses
Presentation transcript:

Context … for projects and MyDB Kapteyn Astronomical Institute, Wednesday, 19 April 2006

Context Handling large amounts of data Work together Work in a consistent way Experiment with source code Know what data and code was used Keep data private Make data public Throw away data

Context Organize in Projects, that have A name and description Users Default privileges Responsible - privileged – users New objects are automatically part of the currently active context Tools to safely delete or publish data Be aware of dependencies for history tracking

Setting and getting projects from astro.database.Context import context context.set_project('WORKSHOP2005') context.set_project('OCAM ILT') context.get_projects() context.get_current_project().name CALL AWOPER.AWSECURITY.SET_PROJECT('OCAM ILT')

Migrating MyDB to other Project Everything Toolbox/dbmigrateall.py AWMJACKSON KIDS Single object, including dependencies sl = SourceList.name.like('*TEST*')[0] context.migrate(sl, 'VESUVIO')

Deleting MyDB Delete ALL objects that belong to MyDB project Toolbox/dbdeleteall.py AWMJACKSON Includes files, which take up most space No dependency check required

Projects Like MyDB, but for more users. Delete all data that is private to KIDS Toolbox/dbdeleteall.py KIDS Making data public, i.e. update privileges context.update_privileges(obj, 3)