PHP Manual
PEAR Manual
Smarty Manual
PostgreSQL
MySQL Manual
Perl Manual
Ciekawe adresy
Czytnik RSS
» Uwaga na pamięci USB !!!Pierwsze miejsce na listopadowej liście zagrożeń opublikowanej w raporcie "Wirusy listopada - globalne trendy rozwoju zagrożeń" przez firmę ESET, producenta m.in. oprogramowania ESET NOD32 Antivirus, zajmuje złośliwe oprogramowanie ukrywające się w plikach Autostartu różnego typu nośników.Laboratoria firmy ESET opisują te pliki jako INF/Autorun. Infekują one komputery poprzez pliki automatycznego startu danego nośnika np. popularne obecnie przenośne pamięci USB.Najprostszym sposobem na uniknięcie problemów i ochroną przed tego typu zagrożeniami jest wyłączenie opcji autostartu nośników w ustawieniach systemowych. Warto również przeskanować komputer oprogramowaniem antywirusowym oraz innym oprogramowaniem rozpoznającym tego typu zagrożenia np. programem ComboFixPełna treść raportu dostępna jest pod adresem www.eset.pl/download/informacje/Lista_wirusow_listopada_wg_laboratoriow_ESET.pdfźródło: www.eset.pl
» Jakie zagrożenia czyhały w Sieci w I poł. 2008
Firma Sophos opublikowała ciekawy raport na temat najczęściej występujących zagrożeń w Sieci w pierwszej połowie 2008 roku. Owe sześć miesięcy można w skrócie streścić następująco: Liczba całego złośliwego oprogramowania – ponad 11 milionów Największe zagrożenie malware – ataki SQL injection skierowane przeciwko stronom Web Infekcje stron Web – jedna infekcja co pięć sekund Strony powiązane ze spamem – średnio co 20 sekund odkrywana jedna strona Kraj, w którym znajduje się najwięcej malware – USA z 38% udziałem Kontynent wysyłający najwięcej spamu – Azja z 35% udziałem Wirusy w załącznikach e-mail – 1 na 2500 wiadomosci Spam w poczcie biznesowej – 97% udział Nowy typ spamu – spamowanie telefonów komórkowych, spam na Facebook Najwieksza ilość malware – Blogger (Blogspot.com)
» Czwartkowy Przegląd Prasy
TP interesuje się kupnem Aster... Google tworzy projekt konkurencyjny dla Facebooka... Zysk TPSA powyżej konsensusu... IBM otwiera centrum cloud computing na Politechnice Wrocławskiej... Jedna trzecia MŚP nie korzysta z usług IT... Polskie firmy chcą być częścią nadchodzącej rewolucji w rozrywce... Motorola kpi z najnowszego iPhona... Nawet Disney jest zainteresowany grami społecznościowymi...
» TDK: Optyczne dyski 320GB
TDK ogłosiło opracowanie prototypu optycznego dysku mieszczącego 320GB informacji, czyli 6 razy więcej od obecnie dostępnych nośników o najwyższej pojemności. Dwunastocentymetrowy dysk ma 10 warstw zapisu, każda z nich ma przechowywać 32GB. Dyski Blu-ray potrafią zapisać do 25GB na każdą warstwę, a największymi nośnikami dostępnymi na rynku są ich wersje dwuwarstwowe.
vi. reference
the entries in this reference are meant to provide in reasonable length an authoritative, complete, and formal summary about their respective subjects. more information about the use of postgresql, in narrative, tutorial, or example form, may be found in other parts of this book. see the cross-references listed on each reference page.
the reference entries are also available as traditional "man" pages.
- table of contents
- i. sql commands
- abort -- abort the current transaction
- alter aggregate -- change the definition of an aggregate function
- alter conversion -- change the definition of a conversion
- alter database -- change a database
- alter domain -- change the definition of a domain
- alter function -- change the definition of a function
- alter group -- change role name or membership
- alter index -- change the definition of an index
- alter language -- change the definition of a procedural language
- alter operator -- change the definition of an operator
- alter operator class -- change the definition of an operator class
- alter role -- change a database role
- alter schema -- change the definition of a schema
- alter sequence -- change the definition of a sequence generator
- alter table -- change the definition of a table
- alter tablespace -- change the definition of a tablespace
- alter trigger -- change the definition of a trigger
- alter type -- change the definition of a type
- alter user -- change a database role
- analyze -- collect statistics about a database
- begin -- start a transaction block
- checkpoint -- force a transaction log checkpoint
- close -- close a cursor
- cluster -- cluster a table according to an index
- comment -- define or change the comment of an object
- commit -- commit the current transaction
- commit prepared -- commit a transaction that was earlier prepared for two-phase commit
- copy -- copy data between a file and a table
- create aggregate -- define a new aggregate function
- create cast -- define a new cast
- create constraint trigger -- define a new constraint trigger
- create conversion -- define a new encoding conversion
- create database -- create a new database
- create domain -- define a new domain
- create function -- define a new function
- create group -- define a new database role
- create index -- define a new index
- create language -- define a new procedural language
- create operator -- define a new operator
- create operator class -- define a new operator class
- create role -- define a new database role
- create rule -- define a new rewrite rule
- create schema -- define a new schema
- create sequence -- define a new sequence generator
- create table -- define a new table
- create table as -- define a new table from the results of a query
- create tablespace -- define a new tablespace
- create trigger -- define a new trigger
- create type -- define a new data type
- create user -- define a new database role
- create view -- define a new view
- deallocate -- deallocate a prepared statement
- declare -- define a cursor
- delete -- delete rows of a table
- drop aggregate -- remove an aggregate function
- drop cast -- remove a cast
- drop conversion -- remove a conversion
- drop database -- remove a database
- drop domain -- remove a domain
- drop function -- remove a function
- drop group -- remove a database role
- drop index -- remove an index
- drop language -- remove a procedural language
- drop operator -- remove an operator
- drop operator class -- remove an operator class
- drop owned -- remove database objects owned by a database role
- drop role -- remove a database role
- drop rule -- remove a rewrite rule
- drop schema -- remove a schema
- drop sequence -- remove a sequence
- drop table -- remove a table
- drop tablespace -- remove a tablespace
- drop trigger -- remove a trigger
- drop type -- remove a data type
- drop user -- remove a database role
- drop view -- remove a view
- end -- commit the current transaction
- execute -- execute a prepared statement
- explain -- show the execution plan of a statement
- fetch -- retrieve rows from a query using a cursor
- grant -- define access privileges
- insert -- create new rows in a table
- listen -- listen for a notification
- load -- load or reload a shared library file
- lock -- lock a table
- move -- position a cursor
- notify -- generate a notification
- prepare -- prepare a statement for execution
- prepare transaction -- prepare the current transaction for two-phase commit
- reassign owned -- change ownership of database objects owned by a database role
- reindex -- rebuild indexes
- release savepoint -- destroy a previously defined savepoint
- reset -- restore the value of a run-time parameter to the default value
- revoke -- remove access privileges
- rollback -- abort the current transaction
- rollback prepared -- cancel a transaction that was earlier prepared for two-phase commit
- rollback to savepoint -- roll back to a savepoint
- savepoint -- define a new savepoint within the current transaction
- select -- retrieve rows from a table or view
- select into -- define a new table from the results of a query
- set -- change a run-time parameter
- set constraints -- set constraint checking modes for the current transaction
- set role -- set the current user identifier of the current session
- set session authorization -- set the session user identifier and the current user identifier of the current session
- set transaction -- set the characteristics of the current transaction
- show -- show the value of a run-time parameter
- start transaction -- start a transaction block
- truncate -- empty a table or set of tables
- unlisten -- stop listening for a notification
- update -- update rows of a table
- vacuum -- garbage-collect and optionally analyze a database
- ii. postgresql client applications
- clusterdb -- cluster a postgresql database
- createdb -- create a new postgresql database
- createlang -- define a new postgresql procedural language
- createuser -- define a new postgresql user account
- dropdb -- remove a postgresql database
- droplang -- remove a postgresql procedural language
- dropuser -- remove a postgresql user account
- ecpg -- embedded sql c preprocessor
- pg_config -- retrieve information about the installed version of postgresql
- pg_dump -- extract a postgresql database into a script file or other archive file
- pg_dumpall -- extract a postgresql database cluster into a script file
- pg_restore -- restore a postgresql database from an archive file created by pg_dump
- psql -- postgresql interactive terminal
- reindexdb -- reindex a postgresql database
- vacuumdb -- garbage-collect and analyze a postgresql database
- iii. postgresql server applications
- initdb -- create a new postgresql database cluster
- ipcclean -- remove shared memory and semaphores from a failed postgresql server
- pg_controldata -- display control information of a postgresql database cluster
- pg_ctl -- start, stop, or restart a postgresql server
- pg_resetxlog -- reset the write-ahead log and other control information of a postgresql database cluster
- postgres -- run a postgresql server in single-user mode
- postmaster -- postgresql multiuser database server
Copyright © 2006 It Manuals | Desgin by Lenny of Zymic
Najskuteczniejsza reklama to pozycjonowanie - Pozycjonowanie stron <= zajrzyj tu i dowiedz się więcej o pozycjonowanie stron
Najskuteczniejsza reklama to pozycjonowanie - Pozycjonowanie stron <= zajrzyj tu i dowiedz się więcej o pozycjonowanie stron