Additional SQL Server Components Flashcards

1
Q

What is full text indexing?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the steps to use a full text index?

A

You need to create a catalog and then a full text index.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is a full text stoplist for full text indexing?

A

They are filler words that aren’t useful.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are statistical symantecs?

A

It can query based on the meaning of the words instead of just the words themselves

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Where does SSIS security live?

A

In the MSDB database

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are the database roles that SSIS uses to define security?

A
  • 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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the system table that shows all of the SSIS packages that are saved?

A

SYSSISPACKAGES

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the system table that shows the log files for SSIS?

A

SYSSISLOG

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is FILESTREAM?

A

This allows SQL to store unstructured documents, images, etc, on the File system

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the datatype of a Filestream?

A

varbinary(max)

Creates BLOBs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

How do you enable Filestream on an instance of SQL server?

A

Within SQL Server Configuration Manager -> SQL Server Services -> Instance Name -> Properties -> FILESTREAM

EXEC sp_configure filestream_access_level, 2
go
reconfigure
go

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

After you configure a database to use Filestream, what else do you need to do to start using Filestream?

A

The instance needs a Filestream Filegroup set up

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is a FileTable?

A

On a Filestream enabled database, it allows applications to access the files as if they were in the file system.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly