Additional SQL Server Components Flashcards
What is full text indexing?
This allows the system to index all of the words inside of a column instead of just the whole value. It allows for faster searches, but takes more resources.
What are the steps to use a full text index?
You need to create a catalog and then a full text index.
What is a full text stoplist for full text indexing?
They are filler words that aren’t useful.
What are statistical symantecs?
It can query based on the meaning of the words instead of just the words themselves
Where does SSIS security live?
In the MSDB database
What are the database roles that SSIS uses to define security?
- db_ssisadmin - Full Access
- db_ssisltduser - View and Count packages (execute own packages but not others)
- db_ssisoperator - View, export, execute, count all packages but cannot write any packages
What is the system table that shows all of the SSIS packages that are saved?
SYSSISPACKAGES
What is the system table that shows the log files for SSIS?
SYSSISLOG
What is FILESTREAM?
This allows SQL to store unstructured documents, images, etc, on the File system
What is the datatype of a Filestream?
varbinary(max)
Creates BLOBs
How do you enable Filestream on an instance of SQL server?
Within SQL Server Configuration Manager -> SQL Server Services -> Instance Name -> Properties -> FILESTREAM
EXEC sp_configure filestream_access_level, 2
go
reconfigure
go
After you configure a database to use Filestream, what else do you need to do to start using Filestream?
The instance needs a Filestream Filegroup set up
What is a FileTable?
On a Filestream enabled database, it allows applications to access the files as if they were in the file system.