TAILIEUCHUNG - Beginning PHP and Postgre SQL 8 From Novice to Professional phần 10

Ở đây chúng tôi xem xét hai lựa chọn quan trọng nhất. effective_cache_size Thiết lập này cho các kế hoạch kích thước của bộ nhớ cache có thể mong đợi để được có sẵn cho một máy quét chỉ số duy nhất. Giá trị của nó là một con số tương đương với một trang đĩa | 778 CHAPTER 37 IMPORTING AND EXPORTING DATA Copying Data to and from a Table Copying data from a table to a text file or standard output is accomplished using the COPY tablename TO filename STDOUT variant of the COPY command. The complete syntax follows COPY tablename column . TO filename STDOUT WITH BINARY oids delimiter AS delimiter NULL AS null string csv heaDer QUOTE aS quote escape aS escape force nOt Null column . Copying data residing in a text file to a table or standard output is accomplished using the same syntax as that for copying from a table except for three slight variations of the syntax. These changes are bolded in the syntax that follows COPY tablename column . FROM filename STDIN WITH biNary OIDS delimiter AS delimiter NULL AS null string csv heaDer QUOTE aS quote escape aS escape FORCE QUOTE column . As you can see COPY has quite a bit to offer. Perhaps the best way to understand its many capabilities is through several examples. Copying Data from a Table To begin let s dump data from a table containing employee information to standard output psql COPY employee TO STDOUT This returns the following 1 JG100011 Jason Gilmore jason@ 2 RT435234 Robert Treat rob@ 3 GS998909 Greg Sabino Mullane greg@ 4 MW777983 Matt Wade matt@ CHAPTER 37 IMPORTING AND EXPORTING DATA 779 To redirect this output to a file simply specify a filename like so psql COPY employee TO home jason sqldata Keep in mind that the PostgreSQL daemon user will require the necessary privileges for writing to the specified directory. Also an absolute path is required because COPY will not accept relative pathnames. Note On Windows forward slashes should be used to specify the absolute path. So for example to COPY data to PostgreSQL s data directory the path might look like c pgsql data employee. sql. Copying Data from a Text File Copying data from a text file to a table is as simple as copying data to it. Let s begin by importing .

TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.