Enum DataExecutionErrorCode
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
डेटाएक्सीक्यूशनगड़बड़ीकोड
डेटा प्रोसेस करने से जुड़ी गड़बड़ी के कोड की सूची.
किसी एनम को कॉल करने के लिए, उसकी पैरंट क्लास, नाम, और प्रॉपर्टी को कॉल किया जाता है. उदाहरण के लिए,
SpreadsheetApp.DataExecutionErrorCode.TIME_OUT
.
प्रॉपर्टी
प्रॉपर्टी | टाइप | ब्यौरा |
DATA_EXECUTION_ERROR_CODE_UNSUPPORTED | Enum | डेटा प्रोसेस करने से जुड़ी गड़बड़ी का कोड, जो Apps Script में काम नहीं करता. |
NONE | Enum | डेटा प्रोसेस करने में कोई गड़बड़ी नहीं हुई. |
TIME_OUT | Enum | डेटा प्रोसेस करने का समय खत्म हो गया. कृपया डेटा सोर्स specification को अपडेट करें. |
TOO_MANY_ROWS | Enum | डेटा प्रोसेस होने पर, तय सीमा से ज़्यादा पंक्तियां मिलती हैं. कृपया डेटा सोर्स specification को अपडेट करें. |
TOO_MANY_COLUMNS | Enum | डेटा प्रोसेस होने पर, तय सीमा से ज़्यादा कॉलम मिलते हैं. कृपया डेटा सोर्स specification को अपडेट करें. |
TOO_MANY_CELLS | Enum | डेटा प्रोसेस होने पर, तय सीमा से ज़्यादा सेल मिलती हैं. कृपया डेटा सोर्स specification को अपडेट करें. |
ENGINE | Enum | डेटा लागू करने वाले इंजन में गड़बड़ी. ज़्यादा जानकारी के लिए, DataExecutionStatus.getErrorMessage() पर जाएं. |
PARAMETER_INVALID | Enum | डेटा लागू करने का अमान्य पैरामीटर. सोर्स सेल मौजूद होनी चाहिए और उसमें सिर्फ़ संख्या या टेक्स्ट होना चाहिए.
कृपया डेटा सोर्स specification को अपडेट करें. |
UNSUPPORTED_DATA_TYPE | Enum | डेटा प्रोसेस करने पर, ऐसा डेटा टाइप मिलता है जिसका इस्तेमाल नहीं किया जा सकता. कृपया डेटा सोर्स specification को अपडेट करें.
BigQuery के लिए, ARRAY या STRUCT टाइप का इस्तेमाल नहीं किया जा सकता.
|
DUPLICATE_COLUMN_NAMES | Enum | डेटा प्रोसेस होने पर, डुप्लीकेट नाम वाले कॉलम मिले. कृपया डेटा सोर्स specification को अपडेट करें. |
INTERRUPTED | Enum | डेटा प्रोसेस करने में रुकावट आती है. कृपया बाद में रीफ़्रेश करें. |
OTHER | Enum | अन्य गड़बड़ियां. |
TOO_MANY_CHARS_PER_CELL | Enum | डेटा प्रोसेस होने पर, ऐसी वैल्यू मिलती हैं जो किसी एक सेल में इस्तेमाल किए जा सकने वाले वर्णों की तय सीमा से ज़्यादा होती हैं.
कृपया डेटा सोर्स specification को अपडेट करें. |
DATA_NOT_FOUND | Enum | डेटा सोर्स से रेफ़रंस किया गया डेटाबेस नहीं मिला. कृपया डेटा सोर्स specification को अपडेट करें. |
PERMISSION_DENIED | Enum | उपयोगकर्ता के पास उस डेटाबेस का ऐक्सेस नहीं है जिसका रेफ़रंस डेटा सोर्स में दिया गया है. कृपया डेटा सोर्स specification को अपडेट करें या ऐक्सेस का अनुरोध करने के लिए, बिलिंग प्रोजेक्ट के मालिक से संपर्क करें. |
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2025-07-26 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 2025-07-26 (UTC) को अपडेट किया गया."],[[["\u003cp\u003e\u003ccode\u003eDataExecutionErrorCode\u003c/code\u003e is an enumeration of error codes that can occur during data execution in Google Apps Script.\u003c/p\u003e\n"],["\u003cp\u003eThese error codes provide information about the nature of the error, such as timeouts, exceeding data limits, or invalid parameters.\u003c/p\u003e\n"],["\u003cp\u003eMost errors can be addressed by updating the data source specification using \u003ccode\u003eDataSourceSpec\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eTo access a specific error code, use the syntax: \u003ccode\u003eSpreadsheetApp.DataExecutionErrorCode.ERROR_CODE\u003c/code\u003e, replacing \u003ccode\u003eERROR_CODE\u003c/code\u003e with the desired code (e.g., \u003ccode\u003eTIME_OUT\u003c/code\u003e).\u003c/p\u003e\n"],["\u003cp\u003eFor engine-specific or detailed error messages, refer to \u003ccode\u003eDataExecutionStatus.getErrorMessage()\u003c/code\u003e.\u003c/p\u003e\n"]]],["`DataExecutionErrorCode` enumerates errors during data execution. Errors include `TIME_OUT`, `TOO_MANY_ROWS/COLUMNS/CELLS`, `ENGINE` failure, `PARAMETER_INVALID`, `UNSUPPORTED_DATA_TYPE`, `DUPLICATE_COLUMN_NAMES`, `INTERRUPTED`, `OTHER`, `TOO_MANY_CHARS_PER_CELL`, `DATA_NOT_FOUND`, `PERMISSION_DENIED`, `NONE`, and `DATA_EXECUTION_ERROR_CODE_UNSUPPORTED`. To use an error code, use `SpreadsheetApp.DataExecutionErrorCode.ERROR_NAME`. Several errors suggest updating the data source specification. The `ENGINE` error uses `DataExecutionStatus.getErrorMessage()` for details.\n"],null,["# Enum DataExecutionErrorCode\n\nDataExecutionErrorCode\n\nAn enumeration of data execution error codes.\n\nTo call an enum, you call its parent class, name, and property. For example, `\nSpreadsheetApp.DataExecutionErrorCode.TIME_OUT`. \n\n### Properties\n\n| Property | Type | Description |\n|-----------------------------------------|--------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `DATA_EXECUTION_ERROR_CODE_UNSUPPORTED` | `Enum` | A data execution error code that is not supported in Apps Script. |\n| `NONE` | `Enum` | The data execution has no error. |\n| `TIME_OUT` | `Enum` | The data execution timed out. Please update the data source [specification](/apps-script/reference/spreadsheet/data-source#updateSpec(DataSourceSpec)). |\n| `TOO_MANY_ROWS` | `Enum` | The data execution returns more rows than the limit. Please update the data source [specification](/apps-script/reference/spreadsheet/data-source#updateSpec(DataSourceSpec)). |\n| `TOO_MANY_COLUMNS` | `Enum` | The data execution returns more columns than the limit. Please update the data source [specification](/apps-script/reference/spreadsheet/data-source#updateSpec(DataSourceSpec)). |\n| `TOO_MANY_CELLS` | `Enum` | The data execution returns more cells than the limit. Please update the data source [specification](/apps-script/reference/spreadsheet/data-source#updateSpec(DataSourceSpec)). |\n| `ENGINE` | `Enum` | Data execution engine error. Use [DataExecutionStatus.getErrorMessage()](/apps-script/reference/spreadsheet/data-execution-status#getErrorMessage()) for details. |\n| `PARAMETER_INVALID` | `Enum` | Invalid data execution parameter. The source cell must exist and contain only a number or text. Please update the data source [specification](/apps-script/reference/spreadsheet/data-source#updateSpec(DataSourceSpec)). |\n| `UNSUPPORTED_DATA_TYPE` | `Enum` | The data execution returns unsupported data type. Please update the data source [specification](/apps-script/reference/spreadsheet/data-source#updateSpec(DataSourceSpec)). For BigQuery, `ARRAY` or `STRUCT` type is not supported. |\n| `DUPLICATE_COLUMN_NAMES` | `Enum` | The data execution returns duplicate column names. Please update the data source [specification](/apps-script/reference/spreadsheet/data-source#updateSpec(DataSourceSpec)). |\n| `INTERRUPTED` | `Enum` | The data execution is interrupted. Please refresh later. |\n| `OTHER` | `Enum` | Other errors. |\n| `TOO_MANY_CHARS_PER_CELL` | `Enum` | The data execution returns values that exceed the maximum characters allowed in a single cell. Please update the data source [specification](/apps-script/reference/spreadsheet/data-source#updateSpec(DataSourceSpec)). |\n| `DATA_NOT_FOUND` | `Enum` | The database referenced by the data source is not found. Please update the data source [specification](/apps-script/reference/spreadsheet/data-source#updateSpec(DataSourceSpec)). |\n| `PERMISSION_DENIED` | `Enum` | The user does not have access to the database referenced by the data source. Please update the data source [specification](/apps-script/reference/spreadsheet/data-source#updateSpec(DataSourceSpec)) or contact the owner of the billing project to request access. |"]]