. /** * MSSQL specific SQL code generator. * * @package core * @subpackage ddl * @copyright 1999 onwards Martin Dougiamas http://dougiamas.com * 2001-3001 Eloy Lafuente (stronk7) http://contiento.com * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); require_once($CFG->libdir.'/ddl/sql_generator.php'); /// This class generate SQL code to be used against MSSQL /// It extends XMLDBgenerator so everything can be /// overridden as needed to generate correct SQL. class mssql_sql_generator extends sql_generator { /// Only set values that are different from the defaults present in XMLDBgenerator public $statement_end = "\ngo"; // String to be automatically added at the end of each statement public $number_type = 'DECIMAL'; // Proper type for NUMBER(x) in this DB public $unsigned_allowed = false; // To define in the generator must handle unsigned information public $default_for_char = ''; // To define the default to set for NOT NULLs CHARs without default (null=do nothing) public $specify_nulls = true; //To force the generator if NULL clauses must be specified. It shouldn't be necessary //but some mssql drivers require them or everything is created as NOT NULL :-( public $sequence_extra_code = false; //Does the generator need to add extra code to generate the sequence fields public $sequence_name = 'IDENTITY(1,1)'; //Particular name for inline sequences in this generator public $sequence_only = false; //To avoid to output the rest of the field specs, leaving only the name and the sequence_name variable public $enum_inline_code = false; //Does the generator need to add inline code in the column definition public $add_table_comments = false; // Does the generator need to add code for table comments public $concat_character = '+'; //Characters to be used as concatenation operator. If not defined //MySQL CONCAT function will be use public $rename_table_sql = "sp_rename 'OLDNAME', 'NEWNAME'"; //SQL sentence to rename one table, both //OLDNAME and NEWNAME are dynamically replaced public $rename_column_sql = "sp_rename 'TABLENAME.OLDFIELDNAME', 'NEWFIELDNAME', 'COLUMN'"; ///TABLENAME, OLDFIELDNAME and NEWFIELDNAME are dyanmically replaced public $drop_index_sql = 'DROP INDEX TABLENAME.INDEXNAME'; //SQL sentence to drop one index //TABLENAME, INDEXNAME are dynamically replaced public $rename_index_sql = "sp_rename 'TABLENAME.OLDINDEXNAME', 'NEWINDEXNAME', 'INDEX'"; //SQL sentence to rename one index //TABLENAME, OLDINDEXNAME, NEWINDEXNAME are dynamically replaced public $rename_key_sql = null; //SQL sentence to rename one key //TABLENAME, OLDKEYNAME, NEWKEYNAME are dynamically replaced /** * Reset a sequence to the id field of a table. * @param string $table name of table or xmldb_table object * @return array sql commands to execute */ public function getResetSequenceSQL($table) { if (is_string($table)) { $table = new xmldb_table($table); } // From http://msdn.microsoft.com/en-us/library/ms176057.aspx $value = (int)$this->mdb->get_field_sql('SELECT MAX(id) FROM {'. $table->getName() . '}'); if ($value == 0) { $value = 1; } return array("DBCC CHECKIDENT ('" . $this->getTableName($table) . "', RESEED, $value)"); } /** * Given one xmldb_table, returns it's correct name, depending of all the parametrization * Overridden to allow change of names in temp tables * * @param xmldb_table table whose name we want * @param boolean to specify if the name must be quoted (if reserved word, only!) * @return string the correct name of the table */ public function getTableName(xmldb_table $xmldb_table, $quoted=true) { /// Get the name, supporting special mssql names for temp tables if ($this->temptables->is_temptable($xmldb_table->getName())) { $tablename = $this->temptables->get_correct_name($xmldb_table->getName()); } else { $tablename = $this->prefix . $xmldb_table->getName(); } /// Apply quotes optionally if ($quoted) { $tablename = $this->getEncQuoted($tablename); } return $tablename; } /** * Given one correct xmldb_table, returns the SQL statements * to create temporary table (inside one array) */ public function getCreateTempTableSQL($xmldb_table) { $this->temptables->add_temptable($xmldb_table->getName()); $sqlarr = $this->getCreateTableSQL($xmldb_table); return $sqlarr; } /** * Given one correct xmldb_table and the new name, returns the SQL statements * to drop it (inside one array) */ public function getDropTempTableSQL($xmldb_table) { $sqlarr = $this->getDropTableSQL($xmldb_table); $this->temptables->delete_temptable($xmldb_table->getName()); return $sqlarr; } /** * Given one XMLDB Type, lenght and decimals, returns the DB proper SQL type */ public function getTypeSQL($xmldb_type, $xmldb_length=null, $xmldb_decimals=null) { switch ($xmldb_type) { case XMLDB_TYPE_INTEGER: // From http://msdn.microsoft.com/library/en-us/tsqlref/ts_da-db_7msw.asp?frame=true if (empty($xmldb_length)) { $xmldb_length = 10; } if ($xmldb_length > 9) { $dbtype = 'BIGINT'; } else if ($xmldb_length > 4) { $dbtype = 'INTEGER'; } else { $dbtype = 'SMALLINT'; } break; case XMLDB_TYPE_NUMBER: $dbtype = $this->number_type; if (!empty($xmldb_length)) { /// 38 is the max allowed if ($xmldb_length > 38) { $xmldb_length = 38; } $dbtype .= '(' . $xmldb_length; if (!empty($xmldb_decimals)) { $dbtype .= ',' . $xmldb_decimals; } $dbtype .= ')'; } break; case XMLDB_TYPE_FLOAT: $dbtype = 'FLOAT'; if (!empty($xmldb_decimals)) { if ($xmldb_decimals < 6) { $dbtype = 'REAL'; } } break; case XMLDB_TYPE_CHAR: $dbtype = 'NVARCHAR'; if (empty($xmldb_length)) { $xmldb_length='255'; } $dbtype .= '(' . $xmldb_length . ')'; break; case XMLDB_TYPE_TEXT: $dbtype = 'NTEXT'; break; case XMLDB_TYPE_BINARY: $dbtype = 'IMAGE'; break; case XMLDB_TYPE_DATETIME: $dbtype = 'DATETIME'; break; } return $dbtype; } /** * Given one xmldb_table and one xmldb_field, return the SQL statements needed to drop the field from the table * MSSQL overwrites the standard sentence because it needs to do some extra work dropping the default and * check constraints */ public function getDropFieldSQL($xmldb_table, $xmldb_field) { $results = array(); /// Get the quoted name of the table and field $tablename = $this->getTableName($xmldb_table); $fieldname = $this->getEncQuoted($xmldb_field->getName()); /// Look for any default constraint in this field and drop it if ($defaultname = $this->getDefaultConstraintName($xmldb_table, $xmldb_field)) { $results[] = 'ALTER TABLE ' . $tablename . ' DROP CONSTRAINT ' . $defaultname; } /// Look for any check constraint in this field and drop it if ($drop_check = $this->getDropEnumSQL($xmldb_table, $xmldb_field)) { $results = array_merge($results, $drop_check); } /// Build the standard alter table drop column $results[] = 'ALTER TABLE ' . $tablename . ' DROP COLUMN ' . $fieldname; return $results; } /** * Given one correct xmldb_field and the new name, returns the SQL statements * to rename it (inside one array) * MSSQL is special, so we overload the function here. It needs to * drop the constraints BEFORE renaming the field */ public function getRenameFieldSQL($xmldb_table, $xmldb_field, $newname) { $results = array(); //Array where all the sentences will be stored /// Although this is checked in database_manager::rename_field() - double check /// that we aren't trying to rename one "id" field. Although it could be /// implemented (if adding the necessary code to rename sequences, defaults, /// triggers... and so on under each getRenameFieldExtraSQL() function, it's /// better to forbid it, mainly because this field is the default PK and /// in the future, a lot of FKs can be pointing here. So, this field, more /// or less, must be considered immutable! if ($xmldb_field->getName() == 'id') { return array(); } /// Call to standard (parent) getRenameFieldSQL() function $results = array_merge($results, parent::getRenameFieldSQL($xmldb_table, $xmldb_field, $newname)); return $results; } /** * Returns the code (array of statements) needed to execute extra statements on table rename */ public function getRenameTableExtraSQL($xmldb_table, $newname) { $results = array(); $newt = new xmldb_table($newname); //Temporal table for name calculations $oldtablename = $this->getTableName($xmldb_table); $newtablename = $this->getTableName($newt); /// Rename all the check constraints in the table $oldconstraintprefix = $this->getNameForObject($xmldb_table->getName(), ''); $newconstraintprefix = $this->getNameForObject($newt->getName(), '', ''); if ($constraints = $this->getCheckConstraintsFromDB($xmldb_table)) { foreach ($constraints as $constraint) { /// Drop the old constraint $results[] = 'ALTER TABLE ' . $newtablename . ' DROP CONSTRAINT ' . $constraint->name; } } return $results; } /** * Given one xmldb_table and one xmldb_field, return the SQL statements needed to alter the field in the table */ public function getAlterFieldSQL($xmldb_table, $xmldb_field, $skip_type_clause = NULL, $skip_default_clause = NULL, $skip_notnull_clause = NULL) { $results = array(); /// To store all the needed SQL commands /// Get the quoted name of the table and field $tablename = $xmldb_table->getName(); $fieldname = $xmldb_field->getName(); /// Take a look to field metadata $meta = $this->mdb->get_columns($tablename); $metac = $meta[$fieldname]; $oldmetatype = $metac->meta_type; $oldlength = $metac->max_length; $olddecimals = empty($metac->scale) ? null : $metac->scale; $oldnotnull = empty($metac->not_null) ? false : $metac->not_null; //$olddefault = empty($metac->has_default) ? null : strtok($metac->default_value, ':'); $typechanged = true; //By default, assume that the column type has changed $lengthchanged = true; //By default, assume that the column length has changed /// Detect if we are changing the type of the column if (($xmldb_field->getType() == XMLDB_TYPE_INTEGER && $oldmetatype == 'I') || ($xmldb_field->getType() == XMLDB_TYPE_NUMBER && $oldmetatype == 'N') || ($xmldb_field->getType() == XMLDB_TYPE_FLOAT && $oldmetatype == 'F') || ($xmldb_field->getType() == XMLDB_TYPE_CHAR && $oldmetatype == 'C') || ($xmldb_field->getType() == XMLDB_TYPE_TEXT && $oldmetatype == 'X') || ($xmldb_field->getType() == XMLDB_TYPE_BINARY && $oldmetatype == 'B')) { $typechanged = false; } /// If the new field (and old) specs are for integer, let's be a bit more specific differentiating /// types of integers. Else, some combinations can cause things like MDL-21868 if ($xmldb_field->getType() == XMLDB_TYPE_INTEGER && $oldmetatype == 'I') { if ($xmldb_field->getLength() > 9) { // Convert our new lenghts to detailed meta types $newmssqlinttype = 'I8'; } else if ($xmldb_field->getLength() > 4) { $newmssqlinttype = 'I'; } else { $newmssqlinttype = 'I2'; } if ($metac->type == 'bigint') { // Convert current DB type to detailed meta type (our metatype is not enough!) $oldmssqlinttype = 'I8'; } else if ($metac->type == 'smallint') { $oldmssqlinttype = 'I2'; } else { $oldmssqlinttype = 'I'; } if ($newmssqlinttype != $oldmssqlinttype) { // Compare new and old meta types $typechanged = true; // Change in meta type means change in type at all effects } } /// Detect if we are changing the length of the column, not always necessary to drop defaults /// if only the length changes, but it's safe to do it always if ($xmldb_field->getLength() == $oldlength) { $lengthchanged = false; } /// If type or length have changed drop the default if exists if ($typechanged || $lengthchanged) { $results = $this->getDropDefaultSQL($xmldb_table, $xmldb_field); } /// Some changes of type require multiple alter statements, because mssql lacks direct implicit cast between such types /// Here it is the matrix: http://msdn.microsoft.com/en-us/library/ms187928(SQL.90).aspx /// Going to store such intermediate alters in array of objects, storing all the info needed $multiple_alter_stmt = array(); $targettype = $xmldb_field->getType(); if ($targettype == XMLDB_TYPE_TEXT && $oldmetatype == 'I') { // integer to text $multiple_alter_stmt[0] = new stdClass; // needs conversion to varchar $multiple_alter_stmt[0]->type = XMLDB_TYPE_CHAR; $multiple_alter_stmt[0]->length = 255; } else if ($targettype == XMLDB_TYPE_TEXT && $oldmetatype == 'N') { // decimal to text $multiple_alter_stmt[0] = new stdClass; // needs conversion to varchar $multiple_alter_stmt[0]->type = XMLDB_TYPE_CHAR; $multiple_alter_stmt[0]->length = 255; } else if ($targettype == XMLDB_TYPE_TEXT && $oldmetatype == 'F') { // float to text $multiple_alter_stmt[0] = new stdClass; // needs conversion to varchar $multiple_alter_stmt[0]->type = XMLDB_TYPE_CHAR; $multiple_alter_stmt[0]->length = 255; } else if ($targettype == XMLDB_TYPE_INTEGER && $oldmetatype == 'X') { // text to integer $multiple_alter_stmt[0] = new stdClass; // needs conversion to varchar $multiple_alter_stmt[0]->type = XMLDB_TYPE_CHAR; $multiple_alter_stmt[0]->length = 255; $multiple_alter_stmt[1] = new stdClass; // and also needs conversion to decimal $multiple_alter_stmt[1]->type = XMLDB_TYPE_NUMBER; // without decimal positions $multiple_alter_stmt[1]->length = 10; } else if ($targettype == XMLDB_TYPE_NUMBER && $oldmetatype == 'X') { // text to decimal $multiple_alter_stmt[0] = new stdClass; // needs conversion to varchar $multiple_alter_stmt[0]->type = XMLDB_TYPE_CHAR; $multiple_alter_stmt[0]->length = 255; } else if ($targettype == XMLDB_TYPE_FLOAT && $oldmetatype == 'X') { // text to float $multiple_alter_stmt[0] = new stdClass; // needs conversion to varchar $multiple_alter_stmt[0]->type = XMLDB_TYPE_CHAR; $multiple_alter_stmt[0]->length = 255; } /// Just prevent default clauses in this type of sentences for mssql and launch the parent one if (empty($multiple_alter_stmt)) { // Direct implicit conversion allowed, launch it $results = array_merge($results, parent::getAlterFieldSQL($xmldb_table, $xmldb_field, NULL, true, NULL)); } else { // Direct implicit conversion forbidden, use the intermediate ones $final_type = $xmldb_field->getType(); // Save final type and length $final_length = $xmldb_field->getLength(); foreach ($multiple_alter_stmt as $alter) { $xmldb_field->setType($alter->type); // Put our intermediate type and length and alter to it $xmldb_field->setLength($alter->length); $results = array_merge($results, parent::getAlterFieldSQL($xmldb_table, $xmldb_field, NULL, true, NULL)); } $xmldb_field->setType($final_type); // Set the final type and length and alter to it $xmldb_field->setLength($final_length); $results = array_merge($results, parent::getAlterFieldSQL($xmldb_table, $xmldb_field, NULL, true, NULL)); } /// Finally, process the default clause to add it back if necessary if ($typechanged || $lengthchanged) { $results = array_merge($results, $this->getCreateDefaultSQL($xmldb_table, $xmldb_field)); } /// Return results return $results; } /** * Given one xmldb_table and one xmldb_field, return the SQL statements needed to modify the default of the field in the table */ public function getModifyDefaultSQL($xmldb_table, $xmldb_field) { /// MSSQL is a bit special with default constraints because it implements them as external constraints so /// normal ALTER TABLE ALTER COLUMN don't work to change defaults. Because this, we have this method overloaded here $results = array(); /// Decide if we are going to create/modify or to drop the default if ($xmldb_field->getDefault() === null) { $results = $this->getDropDefaultSQL($xmldb_table, $xmldb_field); //Drop but, under some circumstances, re-enable $default_clause = $this->getDefaultClause($xmldb_field); if ($default_clause) { //If getDefaultClause() it must have one default, create it $results = array_merge($results, $this->getCreateDefaultSQL($xmldb_table, $xmldb_field)); //Create/modify } } else { $results = $this->getDropDefaultSQL($xmldb_table, $xmldb_field); //Drop (only if exists) $results = array_merge($results, $this->getCreateDefaultSQL($xmldb_table, $xmldb_field)); //Create/modify } return $results; } /** * Given one xmldb_table and one xmldb_field, return the SQL statements needed to drop its enum * (usually invoked from getModifyEnumSQL() * * TODO: Moodle 2.1 - drop in Moodle 2.1 */ public function getDropEnumSQL($xmldb_table, $xmldb_field) { /// Let's introspect to know the real name of the check constraint if ($check_constraints = $this->getCheckConstraintsFromDB($xmldb_table, $xmldb_field)) { $check_constraint = array_shift($check_constraints); /// Get the 1st (should be only one) $constraint_name = strtolower($check_constraint->name); /// Extract the REAL name /// All we have to do is to drop the check constraint return array('ALTER TABLE ' . $this->getTableName($xmldb_table) . ' DROP CONSTRAINT ' . $constraint_name); } else { /// Constraint not found. Nothing to do return array(); } } /** * Given one xmldb_table and one xmldb_field, return the SQL statements needed to create its default * (usually invoked from getModifyDefaultSQL() */ public function getCreateDefaultSQL($xmldb_table, $xmldb_field) { /// MSSQL is a bit special and it requires the corresponding DEFAULT CONSTRAINT to be dropped $results = array(); /// Get the quoted name of the table and field $tablename = $this->getTableName($xmldb_table); $fieldname = $this->getEncQuoted($xmldb_field->getName()); /// Now, check if, with the current field attributes, we have to build one default $default_clause = $this->getDefaultClause($xmldb_field); if ($default_clause) { /// We need to build the default (Moodle) default, so do it $sql = 'ALTER TABLE ' . $tablename . ' ADD' . $default_clause . ' FOR ' . $fieldname; $results[] = $sql; } return $results; } /** * Given one xmldb_table and one xmldb_field, return the SQL statements needed to drop its default * (usually invoked from getModifyDefaultSQL() */ public function getDropDefaultSQL($xmldb_table, $xmldb_field) { /// MSSQL is a bit special and it requires the corresponding DEFAULT CONSTRAINT to be dropped $results = array(); /// Get the quoted name of the table and field $tablename = $this->getTableName($xmldb_table); $fieldname = $this->getEncQuoted($xmldb_field->getName()); /// Look for the default contraint and, if found, drop it if ($defaultname = $this->getDefaultConstraintName($xmldb_table, $xmldb_field)) { $results[] = 'ALTER TABLE ' . $tablename . ' DROP CONSTRAINT ' . $defaultname; } return $results; } /** * Given one xmldb_table and one xmldb_field, returns the name of its default constraint in DB * or false if not found * This function should be considered internal and never used outside from generator */ public function getDefaultConstraintName($xmldb_table, $xmldb_field) { /// Get the quoted name of the table and field $tablename = $this->getTableName($xmldb_table); $fieldname = $xmldb_field->getName(); /// Look for any default constraint in this field and drop it if ($default = $this->mdb->get_record_sql("SELECT id, object_name(cdefault) AS defaultconstraint FROM syscolumns WHERE id = object_id(?) AND name = ?", array($tablename, $fieldname))) { return $default->defaultconstraint; } else { return false; } } /** * Given one xmldb_table returns one array with all the check constraints * in the table (fetched from DB) * Optionally the function allows one xmldb_field to be specified in * order to return only the check constraints belonging to one field. * Each element contains the name of the constraint and its description * If no check constraints are found, returns an empty array * * TODO: Moodle 2.1 - drop in Moodle 2.1 */ public function getCheckConstraintsFromDB($xmldb_table, $xmldb_field = null) { $results = array(); $tablename = $this->getTableName($xmldb_table); if ($constraints = $this->mdb->get_records_sql("SELECT o.name, c.text AS description FROM sysobjects o, sysobjects p, syscomments c WHERE p.id = o.parent_obj AND o.id = c.id AND o.xtype = 'C' AND p.name = ?", array($tablename))) { foreach ($constraints as $constraint) { $results[$constraint->name] = $constraint; } } /// Filter by the required field if specified if ($xmldb_field) { $filtered_results = array(); $filter = $xmldb_field->getName(); /// Lets clean a bit each constraint description, looking for the filtered field foreach ($results as $key => $result) { $description = trim(preg_replace('/[\(\)]/', '', $result->description)); // Parenthesis out & trim /// description starts by [$filter] assume it's a constraint belonging to the field if (preg_match("/^\[{$filter}\]/i", $description)) { $filtered_results[$key] = $result; } } /// Assign filtered results to the final results array $results = $filtered_results; } return $results; } /** * Given three strings (table name, list of fields (comma separated) and suffix), * create the proper object name quoting it if necessary. * * IMPORTANT: This function must be used to CALCULATE NAMES of objects TO BE CREATED, * NEVER TO GUESS NAMES of EXISTING objects!!! * * IMPORTANT: We are overriding this function for the MSSQL generator because objects * belonging to temporary tables aren't searchable in the catalog neither in information * schema tables. So, for temporary tables, we are going to add 4 randomly named "virtual" * fields, so the generated names won't cause concurrency problems. Really nasty hack, * but the alternative involves modifying all the creation table code to avoid naming * constraints for temp objects and that will dupe a lot of code. * */ public function getNameForObject($tablename, $fields, $suffix='') { if ($this->temptables->is_temptable($tablename)) { // Is temp table, inject random field names $random = strtolower(random_string(12)); // 12cc to be split in 4 parts $fields = $fields . ', ' . implode(', ', str_split($random, 3)); } return parent::getNameForObject($tablename, $fields, $suffix); // Delegate to parent (common) algorithm } /** * Given one object name and it's type (pk, uk, fk, ck, ix, uix, seq, trg) * return if such name is currently in use (true) or no (false) * (invoked from getNameForObject() */ public function isNameInUse($object_name, $type, $table_name) { switch($type) { case 'seq': case 'trg': case 'pk': case 'uk': case 'fk': case 'ck': if ($check = $this->mdb->get_records_sql("SELECT name FROM sysobjects WHERE lower(name) = ?", array(strtolower($object_name)))) { return true; } break; case 'ix': case 'uix': if ($check = $this->mdb->get_records_sql("SELECT name FROM sysindexes WHERE lower(name) = ?", array(strtolower($object_name)))) { return true; } break; } return false; //No name in use found } /** * Returns the code (in array) needed to add one comment to the table */ public function getCommentSQL($xmldb_table) { return array(); } public function addslashes($s) { // do not use php addslashes() because it depends on PHP quote settings! $s = str_replace("'", "''", $s); return $s; } /** * Returns an array of reserved words (lowercase) for this DB */ public static function getReservedWords() { /// This file contains the reserved words for MSSQL databases /// from http://msdn2.microsoft.com/en-us/library/ms189822.aspx $reserved_words = array ( 'add', 'all', 'alter', 'and', 'any', 'as', 'asc', 'authorization', 'avg', 'backup', 'begin', 'between', 'break', 'browse', 'bulk', 'by', 'cascade', 'case', 'check', 'checkpoint', 'close', 'clustered', 'coalesce', 'collate', 'column', 'commit', 'committed', 'compute', 'confirm', 'constraint', 'contains', 'containstable', 'continue', 'controlrow', 'convert', 'count', 'create', 'cross', 'current', 'current_date', 'current_time', 'current_timestamp', 'current_user', 'cursor', 'database', 'dbcc', 'deallocate', 'declare', 'default', 'delete', 'deny', 'desc', 'disk', 'distinct', 'distributed', 'double', 'drop', 'dummy', 'dump', 'else', 'end', 'errlvl', 'errorexit', 'escape', 'except', 'exec', 'execute', 'exists', 'exit', 'external', 'fetch', 'file', 'fillfactor', 'floppy', 'for', 'foreign', 'freetext', 'freetexttable', 'from', 'full', 'function', 'goto', 'grant', 'group', 'having', 'holdlock', 'identity', 'identitycol', 'identity_insert', 'if', 'in', 'index', 'inner', 'insert', 'intersect', 'into', 'is', 'isolation', 'join', 'key', 'kill', 'left', 'level', 'like', 'lineno', 'load', 'max', 'min', 'mirrorexit', 'national', 'nocheck', 'nonclustered', 'not', 'null', 'nullif', 'of', 'off', 'offsets', 'on', 'once', 'only', 'open', 'opendatasource', 'openquery', 'openrowset', 'openxml', 'option', 'or', 'order', 'outer', 'over', 'percent', 'perm', 'permanent', 'pipe', 'pivot', 'plan', 'precision', 'prepare', 'primary', 'print', 'privileges', 'proc', 'procedure', 'processexit', 'public', 'raiserror', 'read', 'readtext', 'reconfigure', 'references', 'repeatable', 'replication', 'restore', 'restrict', 'return', 'revoke', 'right', 'rollback', 'rowcount', 'rowguidcol', 'rule', 'save', 'schema', 'select', 'serializable', 'session_user', 'set', 'setuser', 'shutdown', 'some', 'statistics', 'sum', 'system_user', 'table', 'tape', 'temp', 'temporary', 'textsize', 'then', 'to', 'top', 'tran', 'transaction', 'trigger', 'truncate', 'tsequal', 'uncommitted', 'union', 'unique', 'update', 'updatetext', 'use', 'user', 'values', 'varying', 'view', 'waitfor', 'when', 'where', 'while', 'with', 'work', 'writetext' ); return $reserved_words; } }