...
다음과 같은 encoding 을 사용할 수 있으나 UTF-8 이 기본 설정이며 권장합니다.
(UTF-8 (default), UTF-16, ISO-8859-1, ISO-8859-15, Windows-1250, Windows 1252)CSV 파일은 반드시 header 가 있어야 import 시 데이터를 매핑할 수 있습니다.
기본 구분자는 , 이지만 import 구조생성시 구분자를 지정할 수 있습니다. (예: ||)
여러 개의 값을 하나의 필드에 매핑할 경우 연결자로 || 를 사용합니다.
If you are importing CSV data from a Google Sheets link, the URL you use must be edited before it will work properly. Remove
/edit#gid=0
from the ending of the URL and replace it with/export?format=csv
.
Code Block |
---|
"Name", "Owner", "Service Category", "Hosts"
"Confluence", "Ellen McDonald", "Finance", "Oracle-E-Business-Server"
"Email Service", "Bea Owenstein", "Infrastructure", "exchange.prod.main1"||"exchange_mssql_2012"
"Partner portal", "Les Weinen", "Infrastructure"||"Marketing", "mysql.prod.app7" |
import 구조 생성
Map your data. There are two options:
Map your data automatically by automatically creating object types and attributes, or;
Map your data manually by:
Using object type mapping to create Assets object types
Using object type attribute mapping to create Assets attributes and references
Using child object type mapping to create hierarchical parent and child structures.
After you have created your object type mappings you must enable them. The import structure will not be executable until all object type mappings are set to ENABLED. If your object type mappings are not enabled, right-click on your object type mapping and click Enable to enable them.
...