Monday, January 9, 2012

Create a simple mysql database, tables and insert data for Library Books and Patron details

If you want to create a simple database and set up tables for your library management use the following two sql commands:

=> CREATE DATABASE - create the database

=> CREATE TABLE - create the table

=> INSERT - To add/insert data to table

CREATE DATABASE creates a database with the given name. To use this statement, you need the CREATE privilege for the database.

CREATE TABLE creates a table with the given name. You must have the CREATE privilege for the table.

INSERT inserts new rows into an existing table.

Create a simple mysql database, tables and insert data for Library Books and Patron details

First,we need to to have a mysql server installation

$ sudo apt-get install mysql-server

On a default settings, mysql root user do not need a password to authenticate from localhost. In this case, ou can login as root on your mysql server using:

$ mysql -u root

If a password is required, use the extra switch -p:Login as the mysql root user to create database:


$ mysql -u root -p
Enter password:    


Output:

mysql>

Add a database called books

mysql> CREATE DATABASE books;

Now database is created. Use a database with use command:

mysql> USE books;

Now create a table called authors with name, email and id:

mysql> CREATE TABLE authors (id INT, name VARCHAR(20), email VARCHAR(20));

Display your table name just created:

mysql> SHOW TABLES;

Output:
+-----------------+
| Tables_in_books |
+-----------------+
| authors         |
+-----------------+
1 row in set (0.00 sec)

Now add a data / row to table books using INSERT statement:

mysql> INSERT INTO authors (id,name,email) VALUES(1,"Vivek","xuz@abc.com");

Output:
 
Query OK, 1 row affected (0.00 sec)

Add few more rows:

mysql> INSERT INTO authors (id,name,email) VALUES(2,"Priya","p@gmail.com");
INSERT INTO authors (id,name,email) VALUES(3,"Tom","tom@yahoo.com");

Now display all rows:

mysql> SELECT * FROM authors;

Output:
+------+-------+---------------+
| id   | name  | email         |
+------+-------+---------------+
|    1 | Vivek | xuz@abc.com   |
|    2 | Priya | p@gmail.com   |
|    3 | Tom   | tom@yahoo.com |
+------+-------+---------------+
3 rows in set (0.00 sec)
Exit

mysql> exit
Bye

Post of Professional Assistant at University of Mysore

Professional Assistant (Library): Graduate in any subject and B.Lib.Sc
with 5 years experience preferably in Media Library. 
Desirable: Experience of working in a media library.
Posts is  purely temporary for the duration of the project

The prescribed application forms may be obtained from the Registrar,
University of Mysore, Mysore – 570 005, on payment of [non-refundable] fee of Rs. 100/- for the post.


For more Details http://www.uni-mysore.ac.in/assets/downloads2011/jan/EMMRC-notification.pdf

ESIC PGIMSR & Model Hospital, Bangalore wanted Librarian and Library Assistant for retired employees of the ESIC, Central/ State Government Orgainizations/Public Sector Undertakings/Autonomous Bodies


Employer Name:
ESIC PGIMSR & Model Hospital, Bangalore
Employer Address:
Office of the Medical Superintendent, Employees State Insurance Corporation - PGIMSR and Model Hospital, Rajajinagar, Bangalore-560010.
Remuneration:Rs.15,000
                                                     
 Librarian, Gr-II  (1) Diploma in Library Science(2 yrs) 
years experience in Medical College/University
                    
 Library Assistant (1)  Matriculaiton With Certificate in library science
1 year experience in Medical College/University(preferred)

For more Details:http://www.esickar.gov.in/Contract.pdf

Walk - in Interview for Para-Medical posts (Library Assistant) in Medical Department on contract basis.

Walk - in Interview for Para-Medical posts (Library Assistant) in Medical Department on contract basis.
( THIS IS NOT A PERMANENT APPOINTMENT )


Library Assistant: 84 posts

Age relaxation: 5 years for SC/ST and 3 years for OBC is admissible in the category of posts reserved for them.
ApplyingProcedure: Fees structure  for OC- 375/- and rest BC,SC,ST- 250/- in direct deposit in bank
ANDHRABANK:- AC/No:-116210100028924  with out acanned deposit slip ur resume will not be entertained . send complete details to :- contractor4governmentjobs@gmail.com
Age Limit:– Candidates should be from age group of 18 to 34 yrs as on 01st JAN2011
Age Relaxation:– Candidates of BC/SC/ST will get 05 yrs maximum age relaxation.
3. Terms and conditions as Contract Para Medical Staff :
1. The above engagement of Para-medical staff would be on full time contract basis for a period of one year or till
regularly selected candidates are available or till the currency of the scheme exists whichever is earlier.
2. Services of such Para-medical staff who are engaged on contract basis may be terminated before the expiry of contract period, if unsatisfactory performance is noticed. Service rendered as contract Para-medical staff is a stop gap arrangement and shall not have any bearing in respect of consideration of period of service on contractual basis in case of regular selection through and also does not confer any right for regularization or absorption, by any mode other than.
3. The contract Para-medical staff shall not be entitle for quarters etc., as a matter of right. However, if
available they will be provided accommodation. If Government accommodation is provided, an amount equivalent to the sum of HRA and license fee of the accommodation so provided will be deducted.
4. The detailed instructions with regard to their duties while on contract shall be given to them in the
event of their selection along with offer of engagement. The selected candidates are required to serve anywhere on
.
3. Applications sent through post/courier will not be considered, as this is walk-in-interview.
4. The candidates may note that, they may be required to stay for one more day if required.
5. No TA/DA will be paid to the candidates attending the interview.
How to apply:– Candidates interested may send their request only through mail  last day for sending your mail is 10-01-2012
MAIL ID :- contractor4governmentjobs@gmail.com

Sunday, January 8, 2012

Post Of Librarian and Assistant Librarian at Tezpur University, Assam

Applications are invited for the following posts :

1) Librarian - 01


2) Information Scientist - 01


3) Assistant Librarian - 01

4) Semi Professional Assistant - 01


5) Library Assistant - 01

Last Date: 31 January 2012
To Apply: “The Registrar, Tezpur University, Tezpur-784 028”

T2L Virtual Library

Saturday, January 7, 2012

OCLC Releases FAST as Linked Data

OCLC has released FAST (Faceted Application of Subject Terminology) as Linked Data.
FAST (Faceted Application of Subject Terminology), an enumerative, faceted subject heading schema derived from the Library of Congress Subject Headings (LCSH), is now available as an experimental Linked Data service (http://id.worldcat.org/fast/) and is made available under the Open Data Commons Attribution License.

The FAST authority file, which underlies the FAST Linked Data release, has been created through a multi-year collaboration of OCLC Research and the Library of Congress. Specifically, it is designed to make the rich LCSH vocabulary available as a post-coordinate system in a Web environment.

"Linked Data" is an approach to publishing data on the Web which enhances its utility by making references to persons, places, things, etc. more consistent and linkable across domains.

The release of FAST as Linked Data provides FAST headings that support both human and machine access. FAST incorporates links to corresponding LCSH authorities. In addition, many of the geographic headings have links to the GeoNames geographic database (http://www.geonames.org/).