
Print test
113 Matching questions
- The syntax for numeric data type is expressed as ___
- data type ???
- TRUE and FALSE string values can be converted ___
- Views ensure the security of data by restricting access to the following data:
- A Unicode character uses ___
- smalldatetime ???
- varchar ???
- NVarchar ???
- char [(n)] , the value of n must be between ___
- syntax of the convert function ???
- A stored procedure is a ___
- Scale(s) ???
- Reasons to provide a view instead of enabling users to access the underlying tables in your database:
- A view is ___
- numeric & decimal ???
- if your columns contain 9 to 16 bits, the columns will be stored as ___
- Cast is compliance with ___
- ntext ??
- built-in data types is a wide range of ___
- Microsoft SQL Server 2008's built-in data types are organized into the following general categories:
- char ???
- money, monetary or currency values from ___
- MAX specifier ?
- Examples of PascalCase are such names as ___
- CONVERT(nvarchar(10), OrderDate, 101) ???
- data set char is identified as ___
- The injection process's function is to ___
- A view is also a mechanism to ___
- indexing plays a role in query time and an even greater role in ___
- One way to save time when running the same query over and over again is to create a ___
- Money and smallmoney are ___
- CREATE VIEW vwCustomer
AS
SELECT CustomerId, Company Name, Phone
FROM Customers - Steps to create your view:
- Varchar ???
- A regular character uses ___
- smallmoney, monetary or currency values from ___
- time* ???
- If you are creating complex query statements, your best bet is to ___
- uniqueidentifier (UUID) ???
- Steps to create a stored procedure (SSMS) :
- Complex queries can be stored in the form of a view and data from the view can then be mined ___
- when you are expressing a Unicode character literal, it must have the letter ___
- nchar ???
- how many bytes datetime data type uses ___
- When two expressions (mathematical functions or comparison functions) have different data types, rules for data-type precedence specify that the ___
- A less direct method of attack injects malicious code into ___
- Set the Default Value of the DateCreated column to (getdate()); this will insert the ___
- Using a stored procedure ___
- binary ???
- tinyint ???
- "exec"
- Exact numerics include ___
- int ??
- Database views are designed to create a virtual table that is representative of ___
- A stored procedure is an already-written SQL statement that is ___
- datetime2* ???
- A regular character literal is always expressed with ___
- When you use a VAR element ___
- date* ???
- datetime and datetime2 ???
- An example of executing a stored procedure:
- datetime2 is the data type to use if you will be storing values ___
- nvarchar ???
- cast(count AS float) ???
- The primary form of SQL injection is a direct insertion of code into ___
- Differences between regular and Unicode are the ___
- image ???
- VARCHAR(25) ?
- LOB ?
- Add Table dialog box ???
- There are two methods for creating a view:
- The purpose of a table is to ___
- Money ???
- Examples of camelCase are names like ___
- The date and time data types include ___
- Datetime ???
- The syntax for decimal data type is expressed as ___
- INSERT INTO planets (name, diameter) VALUES ('earth', 10000);
if SQL Server didn't support implicit conversion, the following syntax would be needed: - Precision (p) ???
- Views are referred to as ___
- Cast and Convert functions ???
- text ???
- Non-Unicode data type varchar[(n|max)] is a ___
- The float numeric data type is commonly used in the ___
- SSMS definition :
- Some common examples of views include the following:
- The Boolean data type is also known as the ___
- The integer (int) numeric data type is used to ___
- bit ???
- if your columns store 8 bits or fewer, the columns will be stored as ___
- SELECT * FROM USERLIST
- When a conversion (convert values from one data type to another) is done automatically it is called an ___
- Once you have defined a view, you can reference it as you would any other ___
- You should also avoid using spaces because they add complications that make it necessary for you to use ___
- datetimeoffset* ???
- Boolean ???
- Microsoft SQL Server supports only two character string types:
- syntax of the cast function ???
- you should use the datetime data type if you will be storing values ___
- Creating tables within SSMS is simple because SSMS ___
- Unicode data types are identified with ___
- varbinary ???
- how can you create tables using ANSI SQL syntax?
- bigint ???
- Regular data types include those identified with ___
- Adding indexes to the schema can actually increase the overhead of your database due to the ___
- A view is stored in a database as a ___
- For example, although a DateTime value is represented as a float, ___
- if you multiply an item's cost (represented as a float) with the number of items (represented as an integer), the answer will be ___
- how many bytes datetime2 data type requires ___
- smallint ???
- SQL injection is an ___
- sql_variant ???
- a Integer data from -2^63 (-9,223,372,036,854,775,808) to 2^63-1 8 bytes (9,223,372,036,854,775,807).
- b to bit values. Specifically, TRUE is converted to 1 and FALSE is converted to 0.
- c store mathematical computations and is employed when you do not require a decimal point output.
- d •
Views allow you to limit the type of data users can access. You can
grant view permissions in designated tables, and you can also choose to
deny permissions for certain information.
• Views reduce complexity for end users so they don't have to learn how to write complex SQL queries. Instead, you can write those queries on their behalf and hide them in a view. - e quotes
- f 4 bytes of storage
- g -214,748.3648 to 214,748.3647
- h • A subset of rows or columns of a base table
• A union of two or more tables
• A join of two or more tables
• A statistical summary of base tables
• A subset of another view or some combination of views and base tables - i you may not implicitly convert to a float because it is meant to be a date and/or time.
- j Unicode Character data type with fixed length.
- k between January 1, 1900, and June 6, 2079, that are accurate to only 1 minute.
- l Character data type with fixed length.
- m terminate a text string prematurely and append a new command directed from it; because the inserted command may have additional strings appended to it before it is executed, the malefactor terminates the injected string with a comment mark "—", making subsequent text ignored at execution time.
- n bit data type.
- o Binary data with variable length.
- p provide a structure for storing data within a relational database.
- q What this select statement does is return all the data that is found in the USERLIST table.
- r date, datetime, datetime2, datetimeoffset, smalldatetime, and time.
- s a virtual table consisting of different columns from one or more tables;
( or )
an object that obtains its data from one or more tables. - t user-input variables that are concatenated with SQL commands and then executed.
- u Binary data with fixed length.
- v tells SQL Server to execute the code in the stored procedure.
- w 8 bytes of storage
- x OrderDetails or CustomerAddresses
- y 16-byte GUID.
- z SQL Server will preserve space in the row in which that element resides based on the column's defined size (and not on the actual number of characters in the character string itself ), plus an extra two bytes of data for offset data.
- aa INSERT INTO planets (name, diameter) VALUES ('earth', CAST (10000 as varchar(50)))
- ab NCHAR and NVARCHAR
- ac int, bigint, bit, decimal, numeric, money, and smallmoney
- ad stored in a database.
- ae Transact-SQL data types that have a fixed precision and scale. Valid values range from -10^38+1 through 10^38-1.
- af Specify that a string supports a maximum of only 25 characters
- ag attack in which malicious code is inserted into strings that are later passed on to instances of SQL Server waiting for parsing and execution.
- ah • Specific rows of tables
• Specific columns of tables
• Specific rows and columns of tables
• Rows obtained by using joins
• Statistical summaries of data in given tables
• Subsets of another view or subsets of views and tables - ai A value with a size identified up to a certain threshold (the default is 8,000) is stored inline in the row.
- aj convert the count variable to a float
- ak This data type will be removed in future SQL releases; therefore, use varbinary(max) instead.
- al char [(n)] and is a fixed-length, non-Unicode character (regular character) with a length of n bytes. The value of n must be between 1 and 8,000, making the storage size n bytes.
- am expressed as a float.
- an This creates a view called vwCustomer that will be stored as an object. Here, the data that is queried from the columns comes from the Customers table.
- ao SQL Server Management Studio
- ap using simple query statements.
- aq ANSI standards, which allow you to import or export to other database management systems.
- ar CONVERT ( data_type [ ( length ) ], expression [,style ] )
- as • Exact numbers
• Approximate numbers
• Date and time
• Character strings
• Unicode character strings
• Binary strings
• Other data types
• CLR data types
• Spatial data types - at one byte of storage for each character, which allows you to define one of 256 (8 bits are in a byte, and 2^8 = 256) possible characters, accommodating English and some European languages.
- au between the dates of January 1, 1753, and December 31, 9999, that are accurate to 3.33 milliseconds,
- av This numeric data type is used in places where you want money or currency involved in your database;
- aw used to store date and time data in many different formats.
- ax Unicode Character data type with variable length.
- ay numeric[(p[,s])]
- az is the primary integer (whole number) data type.
Integer data from -2^31(-2,147,483,648) to 2^31-1 (2,147,483,647). - ba create a stored procedure for them and run that stored procedure from within the Query Analyzer using an execute (exec) command.
- bb Stores values of various SQL Server-supported data types, except text, ntext, image, timestamp, and sql_variant.
- bc N (for National) prefixing the single quote. For example: N'This is how a Unicode character string literal looks'
- bd 1 and 8,000, making the storage size n bytes.
- be stored procedure that you can then execute from within the database's command environment.
- bf one or more tables in an alternative way.
- bg scientific community and considered an approximate-number data type. This means that not all values within the data-type range will be represented exactly. In addition, depending on which type of float is used, a 4-byte float supports precision up to 7 digits and an 8-byte float supports precision up to 15 digits.
- bh simplify query execution.
- bi cast(source-value AS destination-type)
- bj -922,337,203,685,477.508 to 922,337, 203,685,477.5807
- bk Defines
a date that is combined with a time of day. The time is based on a
24-hour day, with seconds always zero (:00), meaning there are no
fractional
seconds. Range: 1900-01-01 through 2079-06-06 Accuracy: one minute. - bl myAddress and vendorTerms
- bm allows you to store all the logic inside the database, so by using a simple command, you can query and retrieve all information from all sources.
- bn This dialog box allows you to do:
• specify the table to be used as the primary source...
• To use another existing view, click the Views tab...
• generate records from a function (Functions tab).
• If you want to use more than one source, you can click each of the different tabs to find the table, view, or function you wish to add to your query.
• Once you have selected the desired source(s) (click the Add button)
• Once you have selected and added all your desired sources (Close button) - bo implicit conversion.
- bp predefined data types (Microsoft SQL Server)
- bq single quotes. For example: 'This is how a regular character string literal looks'
- br query object
- bs Regular and Unicode.
- bt Defines a date that is combined with a time of day that is based on a 24-hour clock. Range: 0001-01-01 through 9999-12-31. Range: 00:00:00 through 23:59:59.9999999. Accuracy: 100 nanoseconds.
- bu Integer data from 0 to 255.
- bv decimal[(p[,s])]
- bw exec usp_displayallusers
- bx bytes of storage used for each.
- by database performance improvements.
- bz This data type will be removed in future SQL releases; therefore, use varchar(max) instead.
- ca is an easy-to-use graphical interface.
- cb force a conversion
- cc This data type converts true and false string values to bit values, with true converted to 1 and false converted to 0.
- cd previously written SQL statement that has been "stored" or saved into a database.
- ce A value with a size greater than the default threshold, that value will be stored external to the row and identified as a large object.
- cf subtypes of datetime data type
- cg two bytes of storage per character so that you can represent one of 65,536 (16 bits are in 2 bytes, and 2^16 = 65,536) characters. The additional space allows Unicode to store characters from just about any language, including Chinese, Japanese, Arabic, and so on.
- ch Defines a date. Range: 0001-01-01 through 9999-12-31. Accuracy: one day.
- ci 1 byte
- cj data type with lower precedence
is converted to the data type with higher precedence. - ck Character data type with variable length.
- cl current date within each new record for that specific field.
- cm strings that are destined for storage in a table or are considered metadata. When these stored strings are subsequently concatenated into the dynamic SQL command, the malicious code will be executed.
- cn Right-click the Views folder, then select New View.
- co 2 bytes
- cp Transact-SQL data types you would use to represent monetary or currency values. Both data types are accurate to 1/10,000th of the monetary units they represent.
- cq CHAR and VARCHAR
- cr Integer data from -2^15 (-32,768) to 2^15-1 (32,767).
- cs • By using SSMS
• By writing a Transact-SQL statement - ct This data type will be removed in future SQL releases; therefore, use nvarchar(max) instead.
- cu This will convert the OrderDate, which is a DateTime data type to nvarchar value. The 101 style represents USA date with century. mm/dd/yyyy.
- cv is the maximum total number of decimal digits that can be stored, both to the left and the right of the decimal point. This value must be a minimum of 1 and a maximum of 38. The default precision number is 18.
- cw If you are supporting multiple languages, use this data type.
- cx you will use the create table statement to accomplish this task.
- cy is a Transact-SQL integer data type that takes a value of 1, 0, or NULL
- cz Defines a date that is combined with a time of day that has time-zone awareness and is based on a 24-hour clock. Range: 0001-01-01 through 9999-12-31 ... 00:00:00 through 23:59:59.9999999. Accuracy: 100 nanoseconds.
- da variable-length data set that can consist of 1 to 8,000 characters.
- db table in a database.
- dc underlying tables.
- dd Programmability section >>> Right-click Stored Procedures and choose New Stored Procedure
- de Defines a time of day. This time is without time-zone awareness and is based on a 24-hour clock. Range: 00:00:00.0000000 through 23:59:59.9999999. Accuracy: 100 nanoseconds.
- df an attribute that specifies the type of data an object can hold, as well as how many bytes each data type takes up.
- dg ongoing maintenance of these indexes.
- dh This character-string data type is commonly used in databases where you are supporting English attributes.
- di Reflects the maximum number of decimal digits that can be stored to the right of the decimal point. This must be a value from 0 through p, but it can be specified only if precision is also specified. The default scale is 0.