Súbor: [Platon] / phpWebLogAnalyzer / sql / make_sql_dump.sh (stiahnutie)
Revízia 1.4, Fri May 27 10:57:22 2005 UTC (19 years, 11 months ago) by nepto
Zmeny od 1.3: +2 -2
[lines]
Added keys on the REMOTE_ADDR and HTTP_USER_AGENT columns.
Exported dump is now MySQL-323 compliant.
|
#!/bin/sh
# $Platon: phpWebLogAnalyzer/sql/make_sql_dump.sh,v 1.3 2003/11/09 19:29:36 nepto Exp $
# Don't use this unless you know what you are doing!
mysqldump --compatible=mysql323 -d -p -u weblog weblog \
weblog_accesses \
weblog_accesses_raw \
weblog_auth_types \
weblog_content_types \
weblog_document_roots \
weblog_gateway_interfaces \
weblog_http_accept_charsets \
weblog_http_accept_encodings \
weblog_http_accept_languages \
weblog_http_accepts \
weblog_http_connections \
weblog_http_hosts \
weblog_http_referers \
weblog_http_user_agents \
weblog_ident_ostypes \
weblog_ident_usernames \
weblog_path_infos \
weblog_paths_translated \
weblog_query_strings \
weblog_remote_addrs \
weblog_remote_hosts \
weblog_remote_idents \
weblog_remote_users \
weblog_request_methods \
weblog_request_uris \
weblog_script_filenames \
weblog_script_names \
weblog_server_admins \
weblog_server_names \
weblog_server_protocols \
weblog_server_signatures \
weblog_server_softwares \
weblog_values
Platon Group <platon@platon.sk> http://platon.sk/
|