CData Cloud は、クラウドホスト型のソリューションで、複数の標準サービスやプロトコルにまたがるSmartsheet へのアクセスを実現します。MySQL またはSQL Server データベースに接続できるアプリケーションであれば、CData Cloud を介してSmartsheet に接続できます。
CData Cloud により、他のOData エンドポイントや標準SQL Server / MySQL データベースと同じように、Smartsheet への接続を標準化し、構成することができます。
このページでは、CData Cloud でのSmartsheet への接続の確立 のガイド、利用可能なリソースに関する情報、および使用可能な接続プロパティのリファレンスについて説明します。
接続の確立 は、CData Cloud にデータベースを作成するためのSmartsheet への認証方法と必要な接続プロパティの設定方法について示します。
利用可能な標準サービスを経由してSmartsheet からデータにアクセスする方法と、CData Cloud の管理については、CData Cloud ドキュメント で詳しく説明します。
Database タブで対応するアイコンを選択して、Smartsheet に接続します。必須プロパティはSettings にリストされています。Advanced タブには、通常は必要ない接続プロパティが表示されます。
Smartsheet は、以下の認証メソッドによる接続をサポートしています。
個人用トークンを使用して、自分のデータをテストし、アクセスします。個人用トークンを取得する方法は次のとおりです。
Smartsheet への接続 をクリックして、デフォルトブラウザでOAuth エンドポイントを開きます。ログインして、アプリケーションにアクセス許可を与えます。
ドライバーは、以下のようにOAuth プロセスを完了します。
デフォルトでは、Cloud はサーバーの証明書をシステムの信頼できる証明書ストアと照合してSSL / TLS のネゴシエーションを試みます。
別の証明書を指定するには、利用可能なフォーマットについてSSLServerCert プロパティを参照してください。
Windows のシステムプロキシ経由の接続では、接続プロパティを追加で設定する必要はありません。他のプロキシに接続するには、ProxyAutoDetect をfalse に設定します。
さらにHTTP プロキシへの認証には、ProxyServer とProxyPort に加えてProxyAuthScheme、ProxyUser、およびProxyPassword を設定します。
次のプロパティを設定します。
CData Cloud は、Smartsheet API をリレーショナルテーブル、ビュー、およびストアドプロシージャとしてモデル化します。 ビュー は編集ができないテーブルです。
Workspaces、Folders、etc. のようないくつかのAPI オブジェクトは、'Info_' でインデックス付けされています。これらは、簡単なテキストベースのコンフィギュレーションファイルであるスキーマファイルにて定義されます。
Cloud を使用すると、アカウント内のすべてのシートとレポートを操作できます。 静的なテーブルの情報提供に加え、データモデルは、シートおよびレポートの外観のサンプルを示します。実際のデータモデルは、ユーザー資格情報に基づいて動的に取得されます。
接続時にCloud は、適切なWeb サービスを呼び出してテーブルのリストとテーブルのメタデータを取得します。Cloud を使用して接続すると、新しいテーブルの追加、新しい列の追加、列のデータ型の変更など、Smartsheet アカウントに対して行う変更は即座に反映されます。
ストアドプロシージャ は、Smartsheet のファンクションライクなインターフェースです。これらを使用して、Smartsheet 内の情報を検索、更新、および変更できます。
このセクションでは、API の制限および要件について説明します。既定のSupportEnhancedSQL 機能を使って、これらの制限の大半を回避できます。
You can add hyperlink columns to table schema files generated by the CreateSchema stored procedure.
After generating a schema file from the desired table, add a new column (attr) as follows:
These two values must match exactly.
For example, suppose you have this column in your schema file:
<attr name="MyColumnName" xs:type="string" ... other:columnid="5555555555555555"/>
Your new hyperlink column attached to this column should look like this:
<attr name="nameLink" xs:type="string" ... other:columnid="YourUniqueIDHere" other:hyperlink="MyColumnName"/>
Cloud はSmartsheet のデータを、標準のSQL ステートメントを使用してクエリできるリレーショナルデータベースのテーブルのリストとしてモデル化します。
Name | Description |
Info_Attachments | Query Smartsheet Attachments. Attachments can exist on a Comment (i.e., within a Discussion), on a Row, or on a Sheet. |
Info_Columns | Query Smartsheet Columns in a Sheet or Report. |
Info_Comments | Query Smartsheet Comments in a Discussion. |
Info_Discussions | Query Smartsheet Discussions. A Discussion is a collection of one or more Comments. A Discussion can exist on a Row or a Sheet. |
Query Smartsheet Attachments. Attachments can exist on a Comment (i.e., within a Discussion), on a Row, or on a Sheet.
When getting data from this table the queries might be slow if you have a lot of sheets. To counter this, specifying SheetId is recommended. Also other parameters like DiscussionId, RowId, CommentId can be specified to get Attachments to the related object.
Retrieve all Attachments from all Sheets.
SELECT * FROM Info_Attachments
Retrieve all Attachments related to a Sheet.
SELECT * FROM Info_Attachments WHERE SheetId = '2940085806098308'
Retrieve all Attachments related to a discussion.
SELECT * FROM Info_Attachments WHERE SHEETId = '2940085806098308' AND DiscussionId = '8206230771525508'
Retrieve all Attachments related to a Row.
SELECT * FROM Info_Attachments WHERE SheetId = '2940085806098308' AND RowId = '6773684447799172'
Retrieve all Attachments related to a Comment.
SELECT * FROM Info_Attachments WHERE SheetId = '2940085806098308' AND CommentId = '1322606759569284'
Retrieve details of a specific Attachment.
SELECT * FROM Info_Attachments WHERE Id = '3053958945105796' AND SheetId = '2940085806098308'
You can attach a file to a specific row in a specific sheet. Fields required for Insert are SheetId, RowId, Name of the file and either FilePath or ContentEncoded.
INSERT INTO Info_Attachments (SheetId, RowId, Name, FilePath) VALUES ('8179839304787844', '4728727909230468', 'TestSheet.xlsx', 'G:\\\\TestSheet.xlsx') INSERT INTO Info_Attachments (SheetId, RowId, Name, ContentEncoded) VALUES ('8179839304787844', '4728727909230468', 'TestSheet.xlsx', 'dGVzdGluZyBlbmNvZGVkIHRleHQ=')
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | False |
The unique Identifier of the attachment. | |
Name | String | False |
The name of the attachment. | |
Url | String | False |
The temporary URL of the attachment (files only). | |
UrlExpiresInMillis | Long | False |
The temporary URL time to live for the attachment (files only). | |
AttachmentType | String | False |
The attachment type (one of FILE, GOOGLE_DRIVE, LINK, BOX_COM, DROPBOX, EVERNOTE, or EGNYTE). | |
AttachmentSubType | String | False |
The attachment subtype, valId only for either GOOGLE_DRIVE attachments or EGNYTE attachments. Possible values for GOOGLE_DRIVE attachments: DOCUMENT, SPREADSHEET, PRESENTATION, PDF, DRAWING. Possible values for EGNYTE attachments: FOLDER. | |
CreatedAt | Timestamp | False |
A timestamp of when the attachment was originally added | |
UserId | String | False |
The Id of the user who created the attachment. | |
UserEmail | String | False |
The email address of the user. | |
UserName | String | False |
The full name of the user. Read-only. | |
MimeType | String | False |
Attachment MIME type. For example PNG. | |
ParentType | String | False |
The type of object the attachment belongs to. Possible values: SHEET, ROW, or COMMENT. | |
ParentId | String | False |
The Id of the parent. | |
SizeInKb | Long | False |
The size of the file, if the attachmentType is FILE. | |
SheetId | String | False |
The Id of the sheet. | |
RowId | String | False |
The Id of the row. | |
DiscussionId | String | False |
The Id of the discussion. | |
CommentId | String | False |
The Id of the comment. | |
FilePath | String | False |
The path of the file to insert. | |
ContentEncoded | String | False |
BASE64 encoded content of the file to insert. |
Query Smartsheet Comments in a Discussion.
This view returns details for Columns of a specified Discussion. The SheetId parameter is always required.
Retrieve all comments from a sheet.
SELECT * FROM Info_Comments WHERE SheetId = '2940085806098308'
Retrieve details of a specified Comment.
SELECT * FROM Info_Comments WHERE SheetId = '2940085806098308' AND Id = '1322606759569284'
You can insert a comment to a discussion by providing SheetId, DiscussionId and Text.
INSERT INTO Info_Comments (SheetId, DiscussionId, Text) VALUES ('568679927703428', '4661021235275652', 'This is a comment 3')
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | False |
The unique identifier of the comment. | |
Text | String | False |
The comment body. | |
UserName | String | False |
The user name. | |
UserEmail | String | False |
The email address of the user. | |
CreatedAt | Datetime | False |
The time of creation. | |
ModifiedAt | Datetime | False |
The time of the last modification. | |
AttachmentsAggregate | String | False |
Array of attachment objects. | |
DiscussionId | String | False |
The Id of the discussion. | |
SheetId | String | False |
The Id of the sheet. |
Query Smartsheet Discussions. A Discussion is a collection of one or more Comments. A Discussion can exist on a Row or a Sheet.
This view returns a list of Discussions. The SheetId parameter is always required.
Retrieve all Discussions related to a Sheet.
SELECT * FROM Info_Discussions WHERE SheetId = '2940085806098308'
Retrieve Discussions related to a specific Row of a Sheet.
SELECT * FROM Info_Discussions WHERE SheetId = '2940085806098308' AND RowId = '6773684447799172'
Retrieve details of a specified Comment.
SELECT * FROM Info_Discussions WHERE SheetId = '2940085806098308' AND Id = '8206230771525508'
You can insert a discussion to a sheet by providing SheetId and FirstDiscussionComment. To add a discussion to a row, provide RowId, SheetId, and FirstDiscussionComment.
INSERT INTO Info_Discussions (SheetId, FirstDiscussionComment) VALUES ('568679927703428', 'This is a comment 1') INSERT INTO Info_Discussions (RowId, SheetId, FirstDiscussionComment) VALUES ('1889077216995204', '568679927703428', 'This is a comment 2')
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | False |
The Id of the discussion. | |
Title | String | False |
The title of the comment. | |
AccessLevel | String | False |
The permissions the user has to access the discussion. | |
ParentId | String | False |
The Id of the directly associated row or sheet. | |
ParentType | String | False |
The type of the directly associated row or sheet. Possible values: SHEET or ROW. | |
LastCommentedAt | Datetime | False |
The time of the most recent comment. | |
LastCommentBy | String | False |
The full name of the user who last commented. | |
CreatorName | String | False |
The full name of the user who created the discussion. | |
ReadOnly | Boolean | False |
Whether the user can modify the discussion. | |
SheetId | String | False |
The sheet Id. | |
RowId | String | False |
The row Id. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
FirstDiscussionComment | String |
This column is used only to INSERT the first comment on a discussion, as it is required. |
Create, update, delete, and query the Sheet_Content_Calendar table in Smartsheet.
Name | Type | ReadOnly | References | Description |
RowId [KEY] | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Prio | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Image | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Title & Link | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Details | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Assigned To | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Draft Due | Datetime | False |
This column is dynamic and maps to the corresponding field in the API. | |
Draft Status | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Approved By | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Objective | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Target | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Media Type | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Art Required | Boolean | False |
This column is dynamic and maps to the corresponding field in the API. | |
Placement | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Publication Date | Datetime | False |
This column is dynamic and maps to the corresponding field in the API. | |
Keywords | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Live | Boolean | False |
This column is dynamic and maps to the corresponding field in the API. |
Create, update, delete, and query the Sheet_Customer_Order_Tracking_History table in Smartsheet.
Name | Type | ReadOnly | References | Description |
RowId [KEY] | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
PO | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
PO Date | Datetime | False |
This column is dynamic and maps to the corresponding field in the API. | |
Ship Date | Datetime | False |
This column is dynamic and maps to the corresponding field in the API. | |
Shipped Via | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Invoice Amount | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Invoice Number | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Inv Date | Datetime | False |
This column is dynamic and maps to the corresponding field in the API. | |
Terms | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Paid | Boolean | False |
This column is dynamic and maps to the corresponding field in the API. | |
Date Paid | Datetime | False |
This column is dynamic and maps to the corresponding field in the API. | |
Payment | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Check # | String | False |
This column is dynamic and maps to the corresponding field in the API. |
Create, update, delete, and query the Sheet_Event_Plan_Budget table in Smartsheet.
Name | Type | ReadOnly | References | Description |
RowId [KEY] | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Task Name | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Assigned | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Status | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Progress | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Due Date | Datetime | False |
This column is dynamic and maps to the corresponding field in the API. | |
$ Each | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Qty | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Budget | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Actual | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Comments | String | False |
This column is dynamic and maps to the corresponding field in the API. |
Create, update, delete, and query the Sheet_Expense_Report table in Smartsheet.
Name | Type | ReadOnly | References | Description |
RowId [KEY] | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Date | Datetime | False |
This column is dynamic and maps to the corresponding field in the API. | |
Description | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Expense Category | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Amount | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Manager Approved | Boolean | False |
This column is dynamic and maps to the corresponding field in the API. | |
Comment | String | False |
This column is dynamic and maps to the corresponding field in the API. |
Create, update, delete, and query the Sheet_Gantt_Project_with_Hard_Deadline table in Smartsheet.
Name | Type | ReadOnly | References | Description |
RowId [KEY] | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
At Risk | Boolean | False |
This column is dynamic and maps to the corresponding field in the API. | |
Task Name | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Start Date | Datetime | False |
This column is dynamic and maps to the corresponding field in the API. | |
End Date | Datetime | False |
This column is dynamic and maps to the corresponding field in the API. | |
Assigned To | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Status | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Duration | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
% Complete | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Predecessors | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Comments | String | False |
This column is dynamic and maps to the corresponding field in the API. |
Create, update, delete, and query the Sheet_Job_Candidate_Tracker table in Smartsheet.
Name | Type | ReadOnly | References | Description |
RowId [KEY] | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Candidate Name | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Next Steps | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Comments | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Status | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
RYG | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Start Date | Datetime | False |
This column is dynamic and maps to the corresponding field in the API. | |
Hiring Mgr | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Referral Source | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Hire Type | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Compensation | String | False |
This column is dynamic and maps to the corresponding field in the API. |
Create, update, delete, and query the Sheet_Sales_Activity_Tracking_by_Rep_Month table in Smartsheet.
Name | Type | ReadOnly | References | Description |
RowId [KEY] | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Monthly Metric | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Quota | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Actual | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Percent to Goal | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Variance | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Pace | String | False |
This column is dynamic and maps to the corresponding field in the API. |
Create, update, delete, and query the Sheet_Simple_Sales_Pipeline table in Smartsheet.
Name | Type | ReadOnly | References | Description |
RowId [KEY] | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Status | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Company Logo | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Opportunity | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Contact Name | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Sales Stage | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Forecast Amount | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Probability | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Weighted Forecast | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Expected Close Date | Datetime | False |
This column is dynamic and maps to the corresponding field in the API. | |
Sales Rep | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Next Step | String | False |
This column is dynamic and maps to the corresponding field in the API. |
Create, update, delete, and query the Sheet_Team_Objectives_Tracker table in Smartsheet.
Name | Type | ReadOnly | References | Description |
RowId [KEY] | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Task Name | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Responsible | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
State | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Due Date | Datetime | False |
This column is dynamic and maps to the corresponding field in the API. | |
Comments | String | False |
This column is dynamic and maps to the corresponding field in the API. |
Create, update, delete, and query the Sheet_Team_Task_List_by_Priority table in Smartsheet.
Name | Type | ReadOnly | References | Description |
RowId [KEY] | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
RYG | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Task | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Assigned To | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Reviewed | Boolean | False |
This column is dynamic and maps to the corresponding field in the API. | |
Status | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Due | Datetime | False |
This column is dynamic and maps to the corresponding field in the API. | |
Notes & Comments | String | False |
This column is dynamic and maps to the corresponding field in the API. |
Create, update, delete, and query the Sheet_WebFormTest table in Smartsheet.
Name | Type | ReadOnly | References | Description |
RowId [KEY] | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Form Field 1 | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Form Field 2 | String | False |
This column is dynamic and maps to the corresponding field in the API. | |
Form Date Field | Datetime | False |
This column is dynamic and maps to the corresponding field in the API. |
ビューは、データを示すという点でテーブルに似ていますが、ビューは読み取り専用です。
クエリは、ビューに対して通常のテーブルと同様に実行することができます。
Name | Description |
Info_CellHistory | Query the available CellHistory of a Cell in Smartsheet. |
Info_Cells | Query Smartsheet Cells. A collection of Cells comprises each Row in a Sheet. |
Info_Contacts | Query Smartsheet Contacts. A Contact is the personal contact of a User in Smartsheet. |
Info_Favorites | Query Smartsheet Favorites. |
Info_Folders | Query Smartsheet Folders in the Sheets Folder for the User, in another Folder, or in a Workspace. |
Info_Groups | Query Smartsheet Groups. |
Info_Home | Query objects on the Home tab in Smartsheet. The Home tab shows all objects a User has access to. |
Info_Reports | Query Smartsheet Reports. |
Info_Rows | Query Rows in a Sheet or Report. Each Row is composed of a collection of Cells, and may optionally contain Discussions and Attachments. |
Info_ServerInformation | Query Smartsheet Server Information including application constants. |
Info_Shares | Query the Sharing operations of Reports, Sheets, and Workspaces. |
Info_Sheets | Query Smartsheets Sheets. A Sheet can exist in the Sheets folder for the user (Home), in a Folder, or in a Workspace. It is comprised of Columns, Rows, and Cells, and may optionally contain Attachments and Discussions. |
Info_Templates | Query Smartsheet Templates. |
Info_Users | Query the Users in the organization. |
Info_Workspaces | Query Smartsheet Workspaces. |
Query the available CellHistory of a Cell in Smartsheet.
To get data from this view a SheetId, RowId, and ColumnId are always required.
Retrieve Cell History.
SELECT * FROM Info_CellHistory WHERE SheetId = '2940085806098308' AND RowId = '6773684447799172' AND ColumnId = '7999197812156292'
Name | Type | References | Description |
Value | String | The value of the cell. | |
ModifiedAt | Datetime | The value of the cell. | |
EditorName | String | The name of the user who last modified the cell. | |
EditorEmail | String | The email address of the user who last modified the cell. | |
SheetId | String | The Id of the sheet. | |
RowId | String | The Id of the row. | |
ColumnId | String | The Id of the column. |
Query Smartsheet Cells. A collection of Cells comprises each Row in a Sheet.
This view returns details for Cells of a specified Row. The SheetId and RowId parameters are always required.
Retrieve Cells.
SELECT * FROM Info_Cells WHERE SheetId = '2940085806098308' AND RowId = '6773684447799172'
Name | Type | References | Description |
Id [KEY] | String | The Id of the column that the cell is located in. | |
Value | String | The value of the cell. A string, a number, or a boolean value. | |
DisplayValue | String | Visual representation of cell contents as presented to the user in the UI. | |
ColumnType | String | The type definition on the Column object. | |
Formula | String | The formula for a cell, if set. | |
Format | String | The format descriptor. | |
ConditionalFormat | String | The format descriptor describing the conditional formatting of the cell. | |
Strict | Boolean | Set to false to enable lenient parsing. Defaults to true. This attribute can be specified in a request, but will never be present in a response. | |
SheetId | String | The sheet Id. | |
RowId | String | The row Id. |
Query Smartsheet Columns in a Sheet or Report.
This view returns details for Columns of a specified Sheet. The SheetId parameter is always required.
Retrieve Columns.
SELECT * FROM Info_Columns WHERE SheetId = '2940085806098308'
Retrieve details of the specified Columns.
SELECT * FROM Info_Columns WHERE SheetId = '2940085806098308' AND Id = '7999197812156292'
Name | Type | References | Description |
Id [KEY] | String | The column Id. | |
Index | Integer | The column index. | |
Title | String | The column title. | |
Primary | Boolean | Whether the column is the Primary Column. | |
Type | String | The column type. One of the following values: Text_Number, Date, Datetime, Contact_List, Checkbox, Picklist, Duration, Predecessor, Abstract_datetime. | |
OptionsAggregate | String | Array of the options available for the column | |
Hidden | Boolean | Whether the column is hidden. | |
Symbol | String | The column symbol. Possible values for the checkbox column type: star, flag. Possible values for the picklist column type: harvey_balls, priority, ryg, priority_hml, decision_symbols, decision_shapes, vcr, rygb, rygg, weather, progress, arrows_3_way, arrows_4_way, arrows_5_way, directions_3_way, directions_4_way, ski, signal, star_rating, hearts, money, effort, pain. | |
ColumnType | String | The system column type. Possible values: auto_number, modified_date, modified_by, created_date, created_by. | |
TagsAggregate | String | Set of tags to indicate special columns. Each element in the array will be set to one of the following values: calendar_start_date, calendar_end_date, gantt_start_date, gantt_end_date, gantt_percent_complete, gantt_display_label, gantt_predecessor, gantt_duration, gantt_assigned_resource | |
Width | Integer | The display width of the column in pixels. | |
Format | String | The format descriptor. | |
FilterType | String | The filter applied to the column. Possible values: list, custom. | |
Locked | Boolean | Whether the column is locked. A value of true indicates that the column has been locked by the sheet owner or the admin. | |
LockedForUser | Boolean | Whether the column is locked for the requesting user. | |
SheetId | String | The sheet Id. |
Query Smartsheet Contacts. A Contact is the personal contact of a User in Smartsheet.
This view returns details for Contacts.
Retrieve Contacts.
SELECT * FROM Info_Contacts
Retrieve details of a specified Contact.
SELECT * FROM Info_Contacts WHERE Id = '1322606759569284'
Name | Type | References | Description |
Id [KEY] | String | The unique identifier of the contact. | |
Name | String | The full name of the contact. | |
String | The email address of the contac. |
Query Smartsheet Favorites.
This view returns a list of Favorite objects.
Retrieve all Favorite objects.
SELECT * FROM Info_Favorites
Name | Type | References | Description |
ObjectId | String | The unique identifier of the item marked as a favorite. If the favorite type is template, only a private sheet-type template Id is allowed. | |
Type | String | The type of the favorite. Possible values: workspace, folder, sheet, report, template. |
Query Smartsheet Folders in the Sheets Folder for the User, in another Folder, or in a Workspace.
Retrieve all Folders.
SELECT * FROM Info_Folders
Retrieve details for a Folder.
SELECT * FROM Info_Folders WHERE Id = '2035256120371076'
Retrieve Folders of a specified Workspace.
SELECT * FROM Info_Folders WHERE WorkspaceId = '2940085806098308'
Name | Type | References | Description |
Id [KEY] | String | The unique identifier of the folder. | |
Name | String | The folder name. | |
Permalink | String | URL that represents a direct link to the Folder in Smartsheet. | |
Favorite | Boolean | Whether the user has marked the Folder as a Favorite in their Home tab. | |
WorkspaceId | String | Id of workspace where this folder is located |
Query Smartsheet Groups.
Retrieve all Groups.
SELECT * FROM Info_Groups
Retrieve details for a Group.
SELECT * FROM Info_Groups WHERE Id = '2035256120371076'
Name | Type | References | Description |
Id [KEY] | String | The unique identifier of the group. | |
Name | String | The name of the group. | |
Description | String | The description of the group. | |
Owner | String | The email address of the group. | |
OwnerId | String | The user Id of the owner of the group. | |
CreatedAt | Datetime | Time of creation. | |
ModifiedAt | Datetime | Time of the last modification. |
Query objects on the Home tab in Smartsheet. The Home tab shows all objects a User has access to.
Retrieve all objects located on the Home tab:
SELECT * FROM Info_Home
Name | Type | References | Description |
SheetsAggregate | String | Array of sheet objects. | |
FoldersAggregat | String | Array of folder objects. | |
ReportsAggregat | String | Array of report objects. | |
TemplatesAggregat | String | Array of template objects. | |
WorkspacesAggregat | String | Array of workspace objects. |
Query Smartsheet Reports.
Retrieve all Reports.
SELECT * FROM Info_Reports
Retrieve Reports located in a specific Workspace.
SELECT * FROM Info_Reports WHERE WorkspaceId = '6773684447799172'
Retrieve Reports located in a specific Folder.
SELECT * FROM Info_Reports WHERE FolderId = '6773684447799172'
Name | Type | References | Description |
Id [KEY] | String | The unique identifier of the report. | |
Name | String | The name of the report. | |
FolderId | String | The Id of the folder. | |
WorkspaceId | String | Id of workspace where this report is located |
Query Rows in a Sheet or Report. Each Row is composed of a collection of Cells, and may optionally contain Discussions and Attachments.
This view returns a list of Sheet Rows. The SheetId parameter is always required.
Retrieve all Rows of a Sheet.
SELECT * FROM Info_Rows WHERE SheetId = '2940085806098308'
Retrieve details of a specified Row.
SELECT * FROM Info_Rows WHERE SheetId = '2940085806098308' AND Id = '8206230771525508'
Name | Type | References | Description |
Id [KEY] | String | The unique identifier of the row. | |
RowNumber | Integer | The row number within the sheet. Starts at 1. | |
Version | Integer | The version number. This is incremented every time a sheet is modified. | |
FilteredOut | Boolean | True if this row is filtered out by a column filter (and thus is not displayed in the Smartsheet app). False if the row is not filtered out. | |
InCriticalPath | Boolean | True if the sheet is a project sheet with dependencies enabled and this row is in the critical path. | |
Locked | Boolean | Whether the row has been locked by the sheet owner or the admin. | |
LockedForUser | Boolean | Whether the row is locked for the requesting user. | |
Expanded | Boolean | Whether the row is expanded or collapsed. | |
AccessLevel | String | The permissions the user has to access the sheet that contains the row. | |
Format | String | The format descriptor. | |
ConditionalFormat | String | The format descriptor for a conditional filter. | |
CreatedAt | Datetime | Time of creation. | |
ModifiedAt | Datetime | Time of the last modification. | |
Permalink | String | URL that represents a direct link to the row in Smartsheet. | |
ParentId | String | The Id of the parent row. | |
SiblingId | String | The Id of the previous sibling row at the same hierarchical level of this row. | |
ToTop | Boolean | Flag used to specify the location for a new or moved row. | |
ToBottom | Boolean | Flag used to specify the location for a new or moved row. | |
Above | Boolean | Flag used to specify the location for a new or moved row. | |
SheetId | String | The Id of the parent sheet. |
Query Smartsheet Server Information including application constants.
Retrieve Server Information:
SELECT * FROM Info_ServerInformation
Name | Type | References | Description |
SupportedLocales | String | Array of strings representing all Smartsheet-supported locales. | |
FormatsDefaults | String | A format descriptor where each element describes the formats the Smartsheet Web application displays for format values that have not been set. | |
FontFamily | String | Font families with additional font information. | |
FontSize | String | Font sizes in points. | |
Bold | String | Specifies bold font. Possible values: none, on. | |
Italic | String | Specifies italic font. Possible values: none, on. | |
Underline | String | Specifies underlined font. Possible values: none, on. | |
Strikethrough | String | Specifies strikethrough font. Possible values: none, on. | |
HorizontalAlign | String | Specifies horizontally aligned text. Possible values: none, on. | |
VerticalAlign | String | Specifies vertically aligned text. Possible values: top, middle, bottom. Note: default is the default value, which is equivalent to top. | |
Color | String | Color hex values. Note: None is the default value for all colors. Applications will need to handle this value and use app-defined colors (typically this is Black for text color and White for background color). | |
Currency | String | Currency codes and symbols. | |
ThousandsSeparator | String | Specifies whether the thousands separator for a number is displayed. Possible values: none, on. | |
NumberFormat | String | The number format. Possible values: none, NUMBER, CURRENCY, PERCENT. | |
TextWrap | String | Whether the text is wrapped. Possible values: none, on. |
Query Smartsheets Sheets. A Sheet can exist in the Sheets folder for the user (Home), in a Folder, or in a Workspace. It is comprised of Columns, Rows, and Cells, and may optionally contain Attachments and Discussions.
Retrieve all Sheets.
SELECT * FROM Info_Sheets
Retrieve Sheets located in a specific Folder.
SELECT * FROM Info_Sheets WHERE FolderId = '2928085806875091'
Retrieve Sheets located in a specific Workspace.
SELECT * FROM Info_Sheets WHERE WorkspaceId = '1928085806875098'
Name | Type | References | Description |
Id [KEY] | String | The unique identifier of the sheet. | |
Name | String | The name of the sheet. | |
Owner | String | Email address of the sheet owner. | |
OwnerId | String | User Id of the Sheet owner. | |
Permalink | String | URL that represents a direct link to the sheet in Smartsheet. | |
SourceId | String | The Id of the Sheet or Template from which the enclosing sheet was created. | |
SourceType | String | The type of the source object. Possible values: sheet or template. | |
CreatedAt | Datetime | Time that the sheet was created. | |
ModifiedAt | Datetime | Time that the sheet was modified. | |
Version | Long | A number that is incremented every time a sheet is modified. | |
TotalRowCount | Long | The total number of rows in the sheet. | |
AccessLevel | String | User permissions on the sheet. | |
ReadOnly | Boolean | Whether the Sheet belongs to an expired trial. | |
GanttEnabled | Boolean | Whether Gantt is enabled. | |
DependenciesEnabled | Boolean | Whether dependencies are enabled. | |
ResourceManagementEnabled | Boolean | Whether resource management is enabled. | |
Favorite | Boolean | Whether the user has marked this sheet as a favorite in their Home tab. | |
ShowParentRowsForFilters | Boolean | Whether the show parent rows option is enabled for the filters. | |
FromId | String | The Id of the Template from which to create the Sheet. | |
WorkspaceId | String | The Id of the workspace. | |
FolderId | String | The Id of the folder. |
Query Smartsheet Templates.
By default this view returns all Templates created by the user. If the TemplateType filter is set to 'public' , the public templates will be returned.
Retrieve all Templates.
SELECT * FROM Info_Templates
Retrieve all other public Templates.
SELECT * FROM Info_Templates WHERE TemplateType = 'public'
Retrieve Templates located on a specific folder.
SELECT * FROM Info_Templates WHERE FolderId = '2928085806875091'
Retrieve Templates located on a specific Workspace.
SELECT * FROM Info_Templates WHERE WorkspaceId = '1928085806875098'
Name | Type | References | Description |
Id [KEY] | String | The unique identifier of the template. | |
Name | String | The name of the template. | |
Description | String | The description for the template. | |
TemplateType | String | The template type.
使用できる値は次のとおりです。public, user | |
AccessLevel | String | The user permissions on the template. | |
Permalink | String | The permalink for the template. | |
Image | String | The image link for the template. | |
Locale | String | The locale for the template. | |
FolderId | String | The Id of the folder the template is part of. | |
WorkspaceId | String | The Id of the workspace the template is part of. |
Query the Users in the organization.
Retrieve all Users.
SELECT * FROM Info_Users
Retrieve all Users of a specific Group.
SELECT * FROM Info_Users WHERE GroupId = '2928085806875091'
Name | Type | References | Description |
Id [KEY] | String | The unique identifier of the user. | |
AccountId | String | The Id of the associated account. | |
AccountName | String | The name of the associated account. | |
String | The email address of the user. | ||
Name | String | The full name of the user. | |
FirstName | String | The first name of the user. | |
LastName | String | The last name of the user. | |
Admin | Boolean | Whether the user is a system admin. A system admin can manage users and accounts. | |
Locale | String | The locale for the user. | |
TimeZone | String | The timezone for the user. | |
LicensedSheetCreator | Boolean | Whether the user is a licensed user. A licensed user can create and own sheets. | |
GroupAdmin | Boolean | Whether the user is a group admin. A group admin can create and edit groups. | |
ResourceViewer | Boolean | Whether the user is a resource viewer. A resource viewer can access resource views. | |
Status | String | The status of the user. Possible values: ACTIVE, PENDING, DECLINED. | |
GroupId | String | The Id of the group. | |
Company | String | The company of the user. This column is only populated when an Id filter is specified. | |
Department | String | The department of the user. This column is only populated when an Id filter is specified. | |
MobilePhone | String | The mobile phone number of the user. This column is only populated when an Id filter is specified. | |
LastLogin | String | The last login time of the user. This is only populated if the user has logged in, and when an Id filter is specified. | |
Role | String | The role of the user. This column is only populated when an Id filter is specified. | |
Title | String | The title of the user. This column is only populated when an Id filter is specified. | |
WorkPhone | String | The work phone number of the user. This column is only populated when an Id filter is specified. |
Query Smartsheet Workspaces.
Retrieve all Workspaces.
SELECT * FROM Info_Workspaces
Retrieve all details for a specific Workspace.
SELECT * FROM Info_Workspaces WHERE Id = '2928085806875091'
Name | Type | References | Description |
Id [KEY] | String | The unique identifier of the workspace. | |
Name | String | The name of the workspace. | |
Favorite | Boolean | Whether the user has marked the workspace as a Favorite. | |
AccessLevel | String | The access permissions the user has to the Workspace. | |
Permalink | String | URL that represents a direct link to the workspace in Smartsheet. |
The Smartsheet table Report_Sales_Activity_And_Team_Objectives.
Name | Type | References | Description |
Sheet Name | String | The Sheet Name column for the table Report_Sales_Activity_And_Team_Objectives. | |
Primary | String | The Primary column for the table Report_Sales_Activity_And_Team_Objectives. | |
Responsible | String | The Responsible column for the table Report_Sales_Activity_And_Team_Objectives. | |
Pace | String | The Pace column for the table Report_Sales_Activity_And_Team_Objectives. | |
Percent to Goal | String | The Percent to Goal column for the table Report_Sales_Activity_And_Team_Objectives. | |
Due Date | Datetime | The Due Date column for the table Report_Sales_Activity_And_Team_Objectives. | |
Actual | String | The Actual column for the table Report_Sales_Activity_And_Team_Objectives. | |
Quota | String | The Quota column for the table Report_Sales_Activity_And_Team_Objectives. | |
Comments | String | The Comments column for the table Report_Sales_Activity_And_Team_Objectives. | |
State | String | The State column for the table Report_Sales_Activity_And_Team_Objectives. |
Query the Report_Tasks_and_Events view in Smartsheet.
Name | Type | References | Description |
RowId [KEY] | String | This column is dynamic and maps to the corresponding field in the API. | |
Sheet Name | String | This column is dynamic and maps to the corresponding field in the API. | |
Primary | String | This column is dynamic and maps to the corresponding field in the API. | |
Assigned To | String | This column is dynamic and maps to the corresponding field in the API. | |
Comments | String | This column is dynamic and maps to the corresponding field in the API. | |
Status | String | This column is dynamic and maps to the corresponding field in the API. | |
Due | Datetime | This column is dynamic and maps to the corresponding field in the API. | |
Due Date | Datetime | This column is dynamic and maps to the corresponding field in the API. | |
Budget | String | This column is dynamic and maps to the corresponding field in the API. | |
Assigned | String | This column is dynamic and maps to the corresponding field in the API. | |
Actual | String | This column is dynamic and maps to the corresponding field in the API. | |
Notes & Comments | String | This column is dynamic and maps to the corresponding field in the API. | |
Reviewed | Boolean | This column is dynamic and maps to the corresponding field in the API. | |
Progress | String | This column is dynamic and maps to the corresponding field in the API. |
ストアドプロシージャはファンクションライクなインターフェースで、Smartsheet の単純なSELECT/INSERT/UPDATE/DELETE 処理にとどまらずCloud の機能を拡張します。
ストアドプロシージャは、パラメータのリストを受け取り、目的の機能を実行し、プロシージャが成功したか失敗したかを示すとともにSmartsheet から関連するレスポンスデータを返します。
Name | Description |
CopyRowsToAnotherSheet | Copy rows form to another sheet. |
CopySheet | Copy sheets form to another folder/home/workplace. |
CreateSheet | Create a sheet. |
DeleteAttachment | Deletes the attachment specified. |
DeleteSheet | Delete a specified sheet. |
ImportFile | Import a CSV or XLSX file to the top-level 'sheets' folder. You can also import it to a specific folder or workspace by specifying their id. You should specify only one of them. |
MoveRowsToAnotherSheet | Move rows form to another sheet. |
MoveSheet | Moves the specified sheet to a new location.. |
Copy rows form to another sheet.
Name | Type | Required | Description |
SheetId | String | False | Id of the sheet to be copied from. |
RowIds | String | False | Array of rows to copy. Comma separated values. Required if RowIdsFilePath is not specified. |
RowIdsFilePath | String | False | The full path to the local text file which stores the comma separated list of Row Id-s to be copied. Required if RowIds is not specified. |
DestinationSheetId | String | False | Id of the destination sheet. |
Include | String | False | Optional. A comma-separated list of row elements to copy in addition to the cell data: attachments, discussions, children or all to include everything (attachments, discussions, children or all). |
IgnoreRowsNotFound | String | False | Optional. true or false: default is false. If set to true, specifying row Ids that do not exist within the source sheet does not cause an error response. If omitted or set to false, specifying row Ids that do not exist within the source sheet causes an error response (and no rows are copied). |
Name | Type | Description |
Success | String | Whether or not the rows was copied successfully. |
AffectedRows | String | The number of copied rows. |
Copy sheets form to another folder/home/workplace.
Name | Type | Required | Description |
SheetId | String | False | Id of the sheet to be copied from. |
DestinationType | String | False | Type of the destination container (when copying or moving a folder or a sheet). One of the following values: folder, home, workspace. |
DestinationId | String | False | Id of the destination container (when copying or moving a folder or a sheet). Required if destinationType is 'folder' or 'workspace' If destinationType is 'home', this value must be null. |
NewName | String | False | Name of the newly created object (when creating a copy of a dashboard, folder, sheet, or workspace). This attribute is not supported for 'move' operations (that is, a moved dashboard, folder, sheet, or workspace retains its original name). |
Include | String | False | Optional. A comma-separated list of row elements to copy in addition to the sheet data: attachments, cellLinks - includes cross-sheet references, data - includes formatting, discussions - includes comments, filters, forms, ruleRecipients - includes notification recipients(must also include rules when using this attribute), rules - includes notifications and workflow rules, shares. NOTE: Cell history is not copied, regardless of which include parameter values are specified. Allowed values: attachments, cellLinks, data, discussions, filters, forms, ruleRecipients, rules, shares. |
Exclude | String | False | Optional. When specified with a value of sheetHyperlinks, excludes this category from the response. |
Name | Type | Description |
Success | String | Whether or not the Sheet was copied successfully. |
Create a sheet.
Note:このプロシージャは、インデックス付きパラメータを使用します。 インデックス付きパラメータは、プロシージャの入力として単一のパラメータを複数のインスタンスに提供することを容易にします。
Param# という名前の入力パラメータがあるとします。このようなインデックス付きパラメータの複数のインスタンスを入力するには、次のように実行します。
EXEC ProcedureName Param#1 = "value1", Param#2 = "value2", Param#3 = "value3"
以下の表では、インデックス付きの入力パラメータは、名前の末尾に '#' 文字が付きます。
Name | Type | Required | Description |
SheetName | String | False | Name of the Sheet. |
ColumnName# | String | False | Name of the column. |
ColumnType# | String | False | Type of the column values. |
PrimaryColumn# | String | False | Specifies if of a column is primary or not. |
Name | Type | Description |
Success | String | Whether or not the sheet was created. |
Deletes the attachment specified.
Name | Type | Required | Description |
SheetId | String | False | The id of the sheet of the attachment. |
AttachmentId | String | False | The id of the attachment. If the attachment has multiple versions, this deletes only the version specified by the attachmentId (each version has a different attachmentId). |
Name | Type | Description |
Success | String | Whether or not the attachment was deleted. |
Delete a specified sheet.
Name | Type | Required | Description |
SheetId | String | False | Id of the sheet. |
SheetName | String | False | Name of the sheet. |
Name | Type | Description |
Success | String | Whether or not the sheet was deleted. |
Import a CSV or XLSX file to the top-level 'sheets' folder. You can also import it to a specific folder or workspace by specifying their id. You should specify only one of them.
Name | Type | Required | Description |
SheetName | String | True | Required. The desired name of the sheet. |
HeaderRowIndex | String | False | Optional. A zero-based integer indicating the row number to use for column names. Rows before this are omitted. If not specified, the default values are Column1, Column2, etc. |
PrimaryColumnIndex | String | False | Optional. A zero-based integer indicating the column to designate as primary. If not specified, the default value is 0. |
FileName | String | True | The file name including extension (and optionally the full path if Content is not set) of the file to upload. Example: C:/Users/Public/Desktop/Departments.csv' |
FolderId | String | False | Imports CSV or XLSX data into a new sheet in the specified folder. |
WorkspaceId | String | False | Imports CSV or XLSX data into a new sheet in the specified workspace. |
Overwrite | String | False | Overwrite an existing sheet.
デフォルト値はfalseです。 |
Name | Type | Description |
Id | String | Sheet Id |
Name | String | Sheet name |
AccessLevel | String | User's permissions on the sheet |
Permalink | String | URL that represents a direct link to the sheet in Smartsheet |
Move rows form to another sheet.
Name | Type | Required | Description |
SheetId | String | False | Id of the sheet to be moved from. |
RowIds | String | False | Array of rows to move. Comma separated values. Required if RowIdsFilePath is not specified. |
RowIdsFilePath | String | False | The full path to the local text file which stores the comma separated list of Row Id-s to be moved. Required if RowIds is not specified. |
DestinationSheetId | String | False | Id of the destination sheet. |
Include | String | False | Optional. A comma-separated list of row elements to move in addition to the cell data: attachments, discussions (attachments, discussions). |
IgnoreRowsNotFound | String | False | Optional. True or False: default is False. If set to true, specifying row Ids that do not exist within the source sheet does not cause an error response. If omitted or set to false, specifying row Ids that do not exist within the source sheet causes an error response (and no rows are moved). |
Name | Type | Description |
Success | String | Whether or not the rows was moved successfully. |
AffectedRows | String | The number of moved rows. |
Moves the specified sheet to a new location..
Name | Type | Required | Description |
SheetId | String | False | Id of the sheet to be moved. |
DestinationType | String | False | Type of the destination container when moving a sheet. One of the following values: folder, home, workspace. |
DestinationId | String | False | Id of the destination container when moving a sheet. Required if destinationType is 'folder' or 'workspace' If destinationType is 'home', this value must be null. |
Name | Type | Description |
Success | String | Whether or not the Sheet was moved successfully. |
このセクションで説明されているシステムテーブルをクエリして、スキーマ情報、データソース機能に関する情報、およびバッチ操作の統計にアクセスできます。
以下のテーブルは、Smartsheet のデータベースメタデータを返します。
以下のテーブルは、データソースへの接続方法およびクエリ方法についての情報を返します。
次のテーブルは、データ変更クエリ(バッチ処理を含む)のクエリ統計を返します。
利用可能なデータベースをリストします。
次のクエリは、接続文字列で決定されるすべてのデータベースを取得します。
SELECT * FROM sys_catalogs
Name | Type | Description |
CatalogName | String | データベース名。 |
利用可能なスキーマをリストします。
次のクエリは、すべての利用可能なスキーマを取得します。
SELECT * FROM sys_schemas
Name | Type | Description |
CatalogName | String | データベース名。 |
SchemaName | String | スキーマ名。 |
利用可能なテーブルをリストします。
次のクエリは、利用可能なテーブルおよびビューを取得します。
SELECT * FROM sys_tables
Name | Type | Description |
CatalogName | String | テーブルまたはビューを含むデータベース。 |
SchemaName | String | テーブルまたはビューを含むスキーマ。 |
TableName | String | テーブル名またはビュー名。 |
TableType | String | テーブルの種類(テーブルまたはビュー)。 |
Description | String | テーブルまたはビューの説明。 |
IsUpdateable | Boolean | テーブルが更新可能かどうか。 |
利用可能なテーブルおよびビューのカラムについて説明します。
次のクエリは、Sheet_Test_Sheet テーブルのカラムとデータ型を返します。
SELECT ColumnName, DataTypeName FROM sys_tablecolumns WHERE TableName='Sheet_Test_Sheet'
Name | Type | Description |
CatalogName | String | テーブルまたはビューを含むデータベースの名前。 |
SchemaName | String | テーブルまたはビューを含むスキーマ。 |
TableName | String | カラムを含むテーブルまたはビューの名前。 |
ColumnName | String | カラム名。 |
DataTypeName | String | データ型の名前。 |
DataType | Int32 | データ型を示す整数値。この値は、実行時に環境に基づいて決定されます。 |
Length | Int32 | カラムのストレージサイズ。 |
DisplaySize | Int32 | 指定されたカラムの通常の最大幅(文字数)。 |
NumericPrecision | Int32 | 数値データの最大桁数。文字データおよび日時データの場合は、カラムの長さ(文字数)。 |
NumericScale | Int32 | カラムのスケール(小数点以下の桁数)。 |
IsNullable | Boolean | カラムがNull を含められるかどうか。 |
Description | String | カラムの簡単な説明。 |
Ordinal | Int32 | カラムのシーケンスナンバー。 |
IsAutoIncrement | String | カラムに固定増分値が割り当てられるかどうか。 |
IsGeneratedColumn | String | 生成されたカラムであるかどうか。 |
IsHidden | Boolean | カラムが非表示かどうか。 |
IsArray | Boolean | カラムが配列かどうか。 |
IsReadOnly | Boolean | カラムが読み取り専用かどうか。 |
IsKey | Boolean | sys_tablecolumns から返されたフィールドがテーブルの主キーであるかどうか。 |
利用可能なストアドプロシージャをリストします。
次のクエリは、利用可能なストアドプロシージャを取得します。
SELECT * FROM sys_procedures
Name | Type | Description |
CatalogName | String | ストアドプロシージャを含むデータベース。 |
SchemaName | String | ストアドプロシージャを含むスキーマ。 |
ProcedureName | String | ストアドプロシージャの名前。 |
Description | String | ストアドプロシージャの説明。 |
ProcedureType | String | PROCEDURE やFUNCTION などのプロシージャのタイプ。 |
ストアドプロシージャパラメータについて説明します。
次のクエリは、RefreshOAuthAccessToken ストアドプロシージャのすべての入力パラメータについての情報を返します。
SELECT * FROM sys_procedureparameters WHERE ProcedureName='RefreshOAuthAccessToken' AND Direction=1 OR Direction=2
Name | Type | Description |
CatalogName | String | ストアドプロシージャを含むデータベースの名前。 |
SchemaName | String | ストアドプロシージャを含むスキーマの名前。 |
ProcedureName | String | パラメータを含むストアドプロシージャの名前。 |
ColumnName | String | ストアドプロシージャパラメータの名前。 |
Direction | Int32 | パラメータのタイプに対応する整数値:input (1)。input/output (2)、またはoutput(4)。input/output タイプパラメータは、入力パラメータと出力パラメータの両方になれます。 |
DataTypeName | String | データ型の名前。 |
DataType | Int32 | データ型を示す整数値。この値は、実行時に環境に基づいて決定されます。 |
Length | Int32 | 文字データの場合は、許可される文字数。数値データの場合は、許可される桁数。 |
NumericPrecision | Int32 | 数値データの場合は最大精度。文字データおよび日時データの場合は、カラムの長さ(文字数)。 |
NumericScale | Int32 | 数値データの小数点以下の桁数。 |
IsNullable | Boolean | パラメータがNull を含められるかどうか。 |
IsRequired | Boolean | プロシージャの実行にパラメータが必要かどうか。 |
IsArray | Boolean | パラメータが配列かどうか。 |
Description | String | パラメータの説明。 |
Ordinal | Int32 | パラメータのインデックス。 |
主キーおよび外部キーについて説明します。
次のクエリは、Sheet_Test_Sheet テーブルの主キーを取得します。
SELECT * FROM sys_keycolumns WHERE IsKey='True' AND TableName='Sheet_Test_Sheet'
Name | Type | Description |
CatalogName | String | キーを含むデータベースの名前。 |
SchemaName | String | キーを含むスキーマの名前。 |
TableName | String | キーを含むテーブルの名前。 |
ColumnName | String | キーカラムの名前 |
IsKey | Boolean | カラムがTableName フィールドで参照されるテーブル内の主キーかどうか。 |
IsForeignKey | Boolean | カラムがTableName フィールドで参照される外部キーかどうか。 |
PrimaryKeyName | String | 主キーの名前。 |
ForeignKeyName | String | 外部キーの名前。 |
ReferencedCatalogName | String | 主キーを含むデータベース。 |
ReferencedSchemaName | String | 主キーを含むスキーマ。 |
ReferencedTableName | String | 主キーを含むテーブル。 |
ReferencedColumnName | String | 主キーのカラム名。 |
外部キーについて説明します。
次のクエリは、他のテーブルを参照するすべての外部キーを取得します。
SELECT * FROM sys_foreignkeys WHERE ForeignKeyType = 'FOREIGNKEY_TYPE_IMPORT'
名前 | タイプ | 説明 |
CatalogName | String | キーを含むデータベースの名前。 |
SchemaName | String | キーを含むスキーマの名前。 |
TableName | String | キーを含むテーブルの名前。 |
ColumnName | String | キーカラムの名前 |
PrimaryKeyName | String | 主キーの名前。 |
ForeignKeyName | String | 外部キーの名前。 |
ReferencedCatalogName | String | 主キーを含むデータベース。 |
ReferencedSchemaName | String | 主キーを含むスキーマ。 |
ReferencedTableName | String | 主キーを含むテーブル。 |
ReferencedColumnName | String | 主キーのカラム名。 |
ForeignKeyType | String | 外部キーがインポート(他のテーブルを指す)キーかエクスポート(他のテーブルから参照される)キーかを指定します。 |
主キーについて説明します。
次のクエリは、すべてのテーブルとビューから主キーを取得します。
SELECT * FROM sys_primarykeys
Name | Type | Description |
CatalogName | String | キーを含むデータベースの名前。 |
SchemaName | String | キーを含むスキーマの名前。 |
TableName | String | キーを含むテーブルの名前。 |
ColumnName | String | キーカラムの名前。 |
KeySeq | String | 主キーのシーケンス番号。 |
KeyName | String | 主キーの名前。 |
利用可能なインデックスについて説明します。インデックスをフィルタリングすることで、より高速なクエリ応答時間でセレクティブクエリを記述できます。
次のクエリは、主キーでないすべてのインデックスを取得します。
SELECT * FROM sys_indexes WHERE IsPrimary='false'
Name | Type | Description |
CatalogName | String | インデックスを含むデータベースの名前。 |
SchemaName | String | インデックスを含むスキーマの名前。 |
TableName | String | インデックスを含むテーブルの名前。 |
IndexName | String | インデックス名。 |
ColumnName | String | インデックスに関連付けられたカラムの名前。 |
IsUnique | Boolean | インデックスが固有の場合はTrue。そうでない場合はFalse。 |
IsPrimary | Boolean | インデックスが主キーの場合はTrue。そうでない場合はFalse。 |
Type | Int16 | インデックスタイプに対応する整数値:statistic (0)、clustered (1)、hashed (2)、またはother (3)。 |
SortOrder | String | 並べ替え順序:A が昇順、D が降順。 |
OrdinalPosition | Int16 | インデックスのカラムのシーケンスナンバー。 |
利用可能な接続プロパティと、接続文字列に設定されている接続プロパティに関する情報を返します。
このテーブルをクエリする際は、config 接続文字列を使用する必要があります。
jdbc:cdata:smartsheet:config:
この接続文字列を使用すると、有効な接続がなくてもこのテーブルをクエリできます。
次のクエリは、接続文字列に設定されている、あるいはデフォルト値で設定されているすべての接続プロパティを取得します。
SELECT * FROM sys_connection_props WHERE Value <> ''
Name | Type | Description |
Name | String | 接続プロパティ名。 |
ShortDescription | String | 簡単な説明。 |
Type | String | 接続プロパティのデータ型。 |
Default | String | 明示的に設定されていない場合のデフォルト値。 |
Values | String | 可能な値のカンマ区切りリスト。別な値が指定されていると、検証エラーがスローされます。 |
Value | String | 設定した値またはあらかじめ設定されたデフォルト。 |
Required | Boolean | プロパティが接続に必要かどうか。 |
Category | String | 接続プロパティのカテゴリ。 |
IsSessionProperty | String | プロパティが、現在の接続に関する情報を保存するために使用されるセッションプロパティかどうか。 |
Sensitivity | String | プロパティの機密度。これは、プロパティがロギングおよび認証フォームで難読化されているかどうかを通知します。 |
PropertyName | String | キャメルケースの短縮形の接続プロパティ名。 |
Ordinal | Int32 | パラメータのインデックス。 |
CatOrdinal | Int32 | パラメータカテゴリのインデックス。 |
Hierarchy | String | このプロパティと一緒に設定する必要がある、関連のある依存プロパティを表示します。 |
Visible | Boolean | プロパティが接続UI に表示されるかどうかを通知します。 |
ETC | String | プロパティに関するその他のさまざまな情報。 |
Cloud がデータソースにオフロードできるSELECT クエリ処理について説明します。
SQL 構文の詳細については、SQL 準拠 を参照してください。
以下はSQL 機能のサンプルデータセットです。 SELECT 機能のいくつかの側面がサポートされている場合には、カンマ区切りのリストで返されます。サポートされていない場合、カラムにはNO が入ります。
名前 | 説明 | 有効な値 |
AGGREGATE_FUNCTIONS | サポートされている集計関数。 | AVG, COUNT, MAX, MIN, SUM, DISTINCT |
COUNT | COUNT 関数がサポートされているかどうか。 | YES, NO |
IDENTIFIER_QUOTE_OPEN_CHAR | 識別子をエスケープするための開始文字。 | [ |
IDENTIFIER_QUOTE_CLOSE_CHAR | 識別子をエスケープするための終了文字。 | ] |
SUPPORTED_OPERATORS | サポートされているSQL 演算子。 | =, >, <, >=, <=, <>, !=, LIKE, NOT LIKE, IN, NOT IN, IS NULL, IS NOT NULL, AND, OR |
GROUP_BY | GROUP BY がサポートされているかどうか。サポートされている場合、どのレベルでサポートされているか。 | NO, NO_RELATION, EQUALS_SELECT, SQL_GB_COLLATE |
OJ_CAPABILITIES | サポートされている外部結合の種類。 | NO, LEFT, RIGHT, FULL, INNER, NOT_ORDERED, ALL_COMPARISON_OPS |
OUTER_JOINS | 外部結合がサポートされているかどうか。 | YES, NO |
SUBQUERIES | サブクエリがサポートされているかどうか。サポートされていれば、どのレベルでサポートされているか。 | NO, COMPARISON, EXISTS, IN, CORRELATED_SUBQUERIES, QUANTIFIED |
STRING_FUNCTIONS | サポートされている文字列関数。 | LENGTH, CHAR, LOCATE, REPLACE, SUBSTRING, RTRIM, LTRIM, RIGHT, LEFT, UCASE, SPACE, SOUNDEX, LCASE, CONCAT, ASCII, REPEAT, OCTET, BIT, POSITION, INSERT, TRIM, UPPER, REGEXP, LOWER, DIFFERENCE, CHARACTER, SUBSTR, STR, REVERSE, PLAN, UUIDTOSTR, TRANSLATE, TRAILING, TO, STUFF, STRTOUUID, STRING, SPLIT, SORTKEY, SIMILAR, REPLICATE, PATINDEX, LPAD, LEN, LEADING, KEY, INSTR, INSERTSTR, HTML, GRAPHICAL, CONVERT, COLLATION, CHARINDEX, BYTE |
NUMERIC_FUNCTIONS | サポートされている数値関数。 | ABS, ACOS, ASIN, ATAN, ATAN2, CEILING, COS, COT, EXP, FLOOR, LOG, MOD, SIGN, SIN, SQRT, TAN, PI, RAND, DEGREES, LOG10, POWER, RADIANS, ROUND, TRUNCATE |
TIMEDATE_FUNCTIONS | サポートされている日付および時刻関数。 | NOW, CURDATE, DAYOFMONTH, DAYOFWEEK, DAYOFYEAR, MONTH, QUARTER, WEEK, YEAR, CURTIME, HOUR, MINUTE, SECOND, TIMESTAMPADD, TIMESTAMPDIFF, DAYNAME, MONTHNAME, CURRENT_DATE, CURRENT_TIME, CURRENT_TIMESTAMP, EXTRACT |
REPLICATION_SKIP_TABLES | レプリケーション中にスキップされたテーブルを示します。 | |
REPLICATION_TIMECHECK_COLUMNS | レプリケーション中に更新判断のカラムとして使用するかどうかを、(指定された順に)チェックするカラムのリストを含む文字列の配列。 | |
IDENTIFIER_PATTERN | 識別子としてどの文字列が有効かを示す文字列値。 | |
SUPPORT_TRANSACTION | プロバイダーが、コミットやロールバックなどのトランザクションをサポートしているかどうかを示します。 | YES, NO |
DIALECT | 使用するSQL ダイアレクトを示します。 | |
KEY_PROPERTIES | Uniform データベースを特定するプロパティを示します。 | |
SUPPORTS_MULTIPLE_SCHEMAS | プロバイダー用に複数のスキームが存在するかどうかを示します。 | YES, NO |
SUPPORTS_MULTIPLE_CATALOGS | プロバイダー用に複数のカタログが存在するかどうかを示します。 | YES, NO |
DATASYNCVERSION | このドライバーにアクセスするために必要な、CData Sync のバージョン。 | Standard, Starter, Professional, Enterprise |
DATASYNCCATEGORY | このドライバーのCData Sync カテゴリ。 | Source, Destination, Cloud Destination |
SUPPORTSENHANCEDSQL | API で提供されている以上の、追加SQL 機能がサポートされているかどうか。 | TRUE, FALSE |
SUPPORTS_BATCH_OPERATIONS | バッチ操作がサポートされているかどうか。 | YES, NO |
SQL_CAP | このドライバーでサポートされているすべてのSQL 機能。 | SELECT, INSERT, DELETE, UPDATE, TRANSACTIONS, ORDERBY, OAUTH, ASSIGNEDID, LIMIT, LIKE, BULKINSERT, COUNT, BULKDELETE, BULKUPDATE, GROUPBY, HAVING, AGGS, OFFSET, REPLICATE, COUNTDISTINCT, JOINS, DROP, CREATE, DISTINCT, INNERJOINS, SUBQUERIES, ALTER, MULTIPLESCHEMAS, GROUPBYNORELATION, OUTERJOINS, UNIONALL, UNION, UPSERT, GETDELETED, CROSSJOINS, GROUPBYCOLLATE, MULTIPLECATS, FULLOUTERJOIN, MERGE, JSONEXTRACT, BULKUPSERT, SUM, SUBQUERIESFULL, MIN, MAX, JOINSFULL, XMLEXTRACT, AVG, MULTISTATEMENTS, FOREIGNKEYS, CASE, LEFTJOINS, COMMAJOINS, WITH, LITERALS, RENAME, NESTEDTABLES, EXECUTE, BATCH, BASIC, INDEX |
PREFERRED_CACHE_OPTIONS | 使用したいcacheOptions を指定する文字列値。 | |
ENABLE_EF_ADVANCED_QUERY | ドライバーがEntity Framework の高度なクエリをサポートしているかどうかを示します。サポートしていなければ、クエリはクライアントサイドで処理されます。 | YES, NO |
PSEUDO_COLUMNS | 利用可能な疑似カラムを示す文字列の配列。 | |
MERGE_ALWAYS | 値がtrue であれば、CData Sync 内でMerge Model が強制的に実行されます。 | TRUE, FALSE |
REPLICATION_MIN_DATE_QUERY | レプリケート開始日時を返すSELECT クエリ。 | |
REPLICATION_MIN_FUNCTION | サーバーサイドでmin を実行するために使用する式名を、プロバイダーが指定できるようになります。 | |
REPLICATION_START_DATE | レプリケート開始日を、プロバイダーが指定できるようになります。 | |
REPLICATION_MAX_DATE_QUERY | レプリケート終了日時を返すSELECT クエリ。 | |
REPLICATION_MAX_FUNCTION | サーバーサイドでmax を実行するために使用する式名を、プロバイダーが指定できるようになります。 | |
IGNORE_INTERVALS_ON_INITIAL_REPLICATE | 初回のレプリケートで、レプリケートをチャンクに分割しないテーブルのリスト。 | |
CHECKCACHE_USE_PARENTID | CheckCache 構文を親キーカラムに対して実行するかどうかを示します。 | TRUE, FALSE |
CREATE_SCHEMA_PROCEDURES | スキーマファイルの生成に使用できる、ストアドプロシージャを示します。 |
次のクエリは、WHERE 句で使用できる演算子を取得します。
SELECT * FROM sys_sqlinfo WHERE Name = 'SUPPORTED_OPERATORS'
WHERE 句では、個々のテーブルの制限や要件が異なる場合がありますので注意してください。詳しくは、データモデル セクションを参照してください。
Name | Type | Description |
NAME | String | SQL 構文のコンポーネント、またはサーバー上で処理できる機能。 |
VALUE | String | サポートされるSQL またはSQL 構文の詳細。 |
試行された変更に関する情報を返します。
次のクエリは、バッチ処理で変更された行のId を取得します。
SELECT * FROM sys_identity
Name | Type | Description |
Id | String | データ変更処理から返された、データベース生成Id。 |
Batch | String | バッチの識別子。1 は単一処理。 |
Operation | String | バッチ内の処理の結果:INSERTED、UPDATED、またはDELETED。 |
Message | String | SUCCESS、またはバッチ内の更新が失敗した場合のエラーメッセージ。 |
Cloud は、データソースの型を、スキーマで使用可能な対応するデータ型にマッピングします。以下のテーブルはこれらのマッピングを説明します。
Smartsheet | CData スキーマ |
Auto-Number | int |
Checkbox | bool |
Contact list | string |
Created (Date) | datetime |
Created By | string |
Date | date |
Dropdown List | string |
Modified (Date) | datetime |
Modified By | string |
Symbols (Flag/Star) | bool |
Symbols (Dropdowns) | string |
Text/Number (Text) | string |
Text/Number (Whole Number) | int (<2,147,483,647) or long (>2,147,483,647) |
Text/Number (Decimal) | float |
プロパティ | 説明 |
AuthScheme | Whether to use Personal Access Token Authentication or OAuth Authentication when connecting to Smartsheet |
PersonalAccessToken | The Personal Access Token that can be generated from the Smartsheet UI. |
プロパティ | 説明 |
Region | The hosting region for your Smartsheet account. |
プロパティ | 説明 |
OAuthClientId | OAuth 認証サーバーを使用してアプリケーションを登録する場合に割り当てられたクライアントId。 |
OAuthClientSecret | OAuth 認証サーバーにアプリケーションを登録する場合に割り当てられたクライアントシークレット。 |
プロパティ | 説明 |
SSLServerCert | TLS/SSL を使用して接続するときに、サーバーが受け入れ可能な証明書。 |
プロパティ | 説明 |
Verbosity | ログファイルの記述をどの程度の詳細さで記載するかを決定するverbosity レベル。 |
プロパティ | 説明 |
BrowsableSchemas | このプロパティは、使用可能なスキーマのサブセットにレポートされるスキーマを制限します。例えば、BrowsableSchemas=SchemaA,SchemaB,SchemaC です。 |
プロパティ | 説明 |
Header | Indicates whether or not the provider should detect column names from the first row. |
HideFormattingCharacters | Set to True if you want to hide currency symbols and percentage signs in numeric values. This will also convert these columns from varchar to double. Only works if TypeDetectionScheme is set to RowScan and at least the first RowScanDepth values for that column are convertable to double. |
IgnoreRowsNotFound | If set to false and any of the specified Row IDs are not found, no rows will be deleted, and a 'not found' error will be returned. |
MaxRows | クエリで集計またはGROUP BY を使用しない場合に返される行数を制限します。これはLIMIT 句よりも優先されます。 |
Pagesize | Smartsheet から返されるページあたりの結果の最大数。 |
PseudoColumns | このプロパティは、テーブルのカラムとして疑似カラムが含まれているかどうかを示します。 |
ReportCompatibilityLevel | Controls whether new functionality, such as multi-contact data is returned as: Backwards-compatible, text format (level 0, default) Multi-contact data (level 1) Multi-contact data (report-compatible, level 2) Multi-picklist data (level 3) |
RowScanDepth | テーブルで利用可能なカラムを探すためにスキャンする行数の最大値。 |
Timeout | タイムアウトエラーがスローされ、処理をキャンセルするまでの秒数。 |
TypeDetectionScheme | Determines how to determine the data types of columns. |
UseFullFilePathsAsTableNames | Whether or not to include the full file path in the name of an exposed table or view, corresponding to a sheet or report. |
UseSimpleNames | テーブルとカラムに簡略名を使用するかどうかを決定するboolean。 |
ValueSource | Indicates whether the cell will use the Value fields as its value or the DisplayValue field. |
このセクションでは、本プロバイダーの接続文字列で設定可能なAuthentication プロパティの全リストを提供します。
プロパティ | 説明 |
AuthScheme | Whether to use Personal Access Token Authentication or OAuth Authentication when connecting to Smartsheet |
PersonalAccessToken | The Personal Access Token that can be generated from the Smartsheet UI. |
Whether to use Personal Access Token Authentication or OAuth Authentication when connecting to Smartsheet
string
"PersonalAccessToken"
Whether to use Personal Access Token Authentication or OAuth Authentication when connecting to Smartsheet
The Personal Access Token that can be generated from the Smartsheet UI.
string
""
The Personal Access Token that can be generated from the Smartsheet UI.
このセクションでは、本プロバイダーの接続文字列で設定可能なConnection プロパティの全リストを提供します。
プロパティ | 説明 |
Region | The hosting region for your Smartsheet account. |
The hosting region for your Smartsheet account.
string
"Global"
The hosting region for your Smartsheet account. Available values are: GLOBAL,EU,GOV.
このセクションでは、本プロバイダーの接続文字列で設定可能なOAuth プロパティの全リストを提供します。
プロパティ | 説明 |
OAuthClientId | OAuth 認証サーバーを使用してアプリケーションを登録する場合に割り当てられたクライアントId。 |
OAuthClientSecret | OAuth 認証サーバーにアプリケーションを登録する場合に割り当てられたクライアントシークレット。 |
OAuth 認証サーバーを使用してアプリケーションを登録する場合に割り当てられたクライアントId。
string
""
OAuth アプリケーションの登録の一環として、コンシューマキーとも呼ばれるOAuthClientId 値、およびクライアントシークレットOAuthClientSecret が提供されます。
OAuth 認証サーバーにアプリケーションを登録する場合に割り当てられたクライアントシークレット。
string
""
OAuth アプリケーションの登録の一環として、コンシューマキーとも呼ばれるOAuthClientId が提供されます。また、コンシューマーシークレットと呼ばれるクライアントシークレットも提供されます。クライアントシークレットをOAuthClientSecret プロパティに設定します。
このセクションでは、本プロバイダーの接続文字列で設定可能なSSL プロパティの全リストを提供します。
プロパティ | 説明 |
SSLServerCert | TLS/SSL を使用して接続するときに、サーバーが受け入れ可能な証明書。 |
TLS/SSL を使用して接続するときに、サーバーが受け入れ可能な証明書。
string
""
TLS/SSL 接続を使用する場合は、このプロパティを使用して、サーバーが受け入れるTLS/SSL 証明書を指定できます。コンピュータによって信頼されていない他の証明書はすべて拒否されます。
このプロパティは、次のフォームを取ります:
説明 | 例 |
フルPEM 証明書(例では省略されています) | -----BEGIN CERTIFICATE----- MIIChTCCAe4CAQAwDQYJKoZIhv......Qw== -----END CERTIFICATE----- |
証明書を保有するローカルファイルへのパス。 | C:\cert.cer |
公開鍵(例では省略されています) | -----BEGIN RSA PUBLIC KEY----- MIGfMA0GCSq......AQAB -----END RSA PUBLIC KEY----- |
MD5 Thumbprint (hex 値はスペースおよびコロン区切り) | ecadbdda5a1529c58a1e9e09828d70e4 |
SHA1 Thumbprint (hex 値はスペースおよびコロン区切り) | 34a929226ae0819f2ec14b4a3d904f801cbb150d |
これを指定しない場合は、マシンが信用するすべての証明書が受け入れられます。
すべての証明書の受け入れを示すには、'*'を使用します。セキュリティ上の理由から、これはお勧めできません。
このセクションでは、本プロバイダーの接続文字列で設定可能なLogging プロパティの全リストを提供します。
プロパティ | 説明 |
Verbosity | ログファイルの記述をどの程度の詳細さで記載するかを決定するverbosity レベル。 |
このセクションでは、本プロバイダーの接続文字列で設定可能なSchema プロパティの全リストを提供します。
プロパティ | 説明 |
BrowsableSchemas | このプロパティは、使用可能なスキーマのサブセットにレポートされるスキーマを制限します。例えば、BrowsableSchemas=SchemaA,SchemaB,SchemaC です。 |
このプロパティは、使用可能なスキーマのサブセットにレポートされるスキーマを制限します。例えば、BrowsableSchemas=SchemaA,SchemaB,SchemaC です。
string
""
スキーマをデータベースからリストすると、負荷がかかる可能性があります。接続文字列でスキーマのリストを提供すると、 パフォーマンスが向上します。
このセクションでは、本プロバイダーの接続文字列で設定可能なMiscellaneous プロパティの全リストを提供します。
プロパティ | 説明 |
Header | Indicates whether or not the provider should detect column names from the first row. |
HideFormattingCharacters | Set to True if you want to hide currency symbols and percentage signs in numeric values. This will also convert these columns from varchar to double. Only works if TypeDetectionScheme is set to RowScan and at least the first RowScanDepth values for that column are convertable to double. |
IgnoreRowsNotFound | If set to false and any of the specified Row IDs are not found, no rows will be deleted, and a 'not found' error will be returned. |
MaxRows | クエリで集計またはGROUP BY を使用しない場合に返される行数を制限します。これはLIMIT 句よりも優先されます。 |
Pagesize | Smartsheet から返されるページあたりの結果の最大数。 |
PseudoColumns | このプロパティは、テーブルのカラムとして疑似カラムが含まれているかどうかを示します。 |
ReportCompatibilityLevel | Controls whether new functionality, such as multi-contact data is returned as: Backwards-compatible, text format (level 0, default) Multi-contact data (level 1) Multi-contact data (report-compatible, level 2) Multi-picklist data (level 3) |
RowScanDepth | テーブルで利用可能なカラムを探すためにスキャンする行数の最大値。 |
Timeout | タイムアウトエラーがスローされ、処理をキャンセルするまでの秒数。 |
TypeDetectionScheme | Determines how to determine the data types of columns. |
UseFullFilePathsAsTableNames | Whether or not to include the full file path in the name of an exposed table or view, corresponding to a sheet or report. |
UseSimpleNames | テーブルとカラムに簡略名を使用するかどうかを決定するboolean。 |
ValueSource | Indicates whether the cell will use the Value fields as its value or the DisplayValue field. |
Indicates whether or not the provider should detect column names from the first row.
bool
false
If true, the first row will be used as a column header. Otherwise, the pseudo column names A, B, C, etc. will be used.
The Cloud will follow the additional specifications below to detect column headers:
Set to True if you want to hide currency symbols and percentage signs in numeric values. This will also convert these columns from varchar to double. Only works if TypeDetectionScheme is set to RowScan and at least the first RowScanDepth values for that column are convertable to double.
bool
false
Set to True if you want to hide currency symbols and percentage signs in numeric values. This will also convert these columns from varchar to double. Only works if TypeDetectionScheme is set to RowScan and at least the first RowScanDepth values for that column are convertable to double.
If set to false and any of the specified Row IDs are not found, no rows will be deleted, and a 'not found' error will be returned.
bool
false
If set to false and any of the specified Row IDs are not found, no rows will be deleted, and a 'not found' error will be returned.
クエリで集計またはGROUP BY を使用しない場合に返される行数を制限します。これはLIMIT 句よりも優先されます。
int
-1
クエリで集計またはGROUP BY を使用しない場合に返される行数を制限します。これはLIMIT 句よりも優先されます。
Smartsheet から返されるページあたりの結果の最大数。
int
500
Pagesize プロパティは、Smartsheet から返されるページあたりの結果の最大数に影響を与えます。より大きい値を設定すると、1ページあたりの消費メモリが増える代わりに、パフォーマンスが向上する場合があります。
このプロパティは、テーブルのカラムとして疑似カラムが含まれているかどうかを示します。
string
""
Entity Framework ではテーブルカラムでない疑似カラムに値を設定できないため、この設定はEntity Framework で特に便利です。この接続設定の値は、"Table1=Column1, Table1=Column2, Table2=Column3" の形式です。"*=*" のように"*" 文字を使用して、すべてのテーブルとすべてのカラムを含めることができます。
Controls whether new functionality, such as multi-contact data is returned as: Backwards-compatible, text format (level 0, default) Multi-contact data (level 1) Multi-contact data (report-compatible, level 2) Multi-picklist data (level 3)
string
"2"
The minimum level required to get data for 'report' tables is 2.
テーブルで利用可能なカラムを探すためにスキャンする行数の最大値。
int
100
テーブルのカラムはテーブル行をスキャンすることで決定される必要があります。この値はスキャンされる行数の最大値を設定します。
大きい値を設定すると、パフォーマンスが低下する場合があります。小さい値を設定すると、特にnull データがある場合には、データ型を正しく判定できない場合があります。
タイムアウトエラーがスローされ、処理をキャンセルするまでの秒数。
int
60
Timeout が0に設定されている場合は、操作がタイムアウトしません。処理が正常に完了するか、エラー状態になるまで実行されます。
Timeout の有効期限が切れても処理が完了していない場合は、Cloud は例外をスローします。
Determines how to determine the data types of columns.
string
"RowScan"
None | Setting TypeDetectionScheme to None will return all columns as the string type. Note: Even when set to None, the column names will still be scanned when Header is set to True. |
RowScan | Setting TypeDetectionScheme to RowScan will scan rows to heuristically determine the data type. The RowScanDepth determines the number of rows to be scanned. |
ColumnFormat | Setting TypeDetectionScheme to ColumnFormat will report the data type based on the format of the column. |
Whether or not to include the full file path in the name of an exposed table or view, corresponding to a sheet or report.
bool
false
If set to true, the names of the exposed sheets as tables and reports as views, will include the full file path. Ex. SalesSheets_Agents_MonthlyReports_Sheet_JuneSheet.
If set to false, the tables and views corresponding to the sheets and reports, will be exposed using only the file's name. Ex. Sheet_JuneSheet.
テーブルとカラムに簡略名を使用するかどうかを決定するboolean。
bool
false
Smartsheet テーブルおよびカラムでは、 通常のデータベースでは使うことが認められていない特殊記号・文字を名前に使うことができます。UseSimpleNames を使用すると、Cloud を従来のデータベースツールでより簡単に使用できるようになります。
UseSimpleNames をtrue に設定し、返されるテーブル名およびカラム名をシンプルにします。表示されるテーブル名 およびカラム名においてアルファベット文字およびアンダースコアのみを有効とするネーミングスキームを強制します。 英数字以外の文字はすべて、アンダースコアに変換されます。
Indicates whether the cell will use the Value fields as its value or the DisplayValue field.
string
"Auto"