You accepted the recommended SQL Profile by executing the following code: DECLARE sqlprofile_name varchar2(30); BEGIN sqlprofile_name := DBMS_SQLTUNE.ACCEPT_SQL_PROFILE( task_name => ’my_task’, profile_name => ’my_profile’); END; Which advisor will analyze this profile?()
A: SQL Access Advisor
B: Undo Advisor
C: Segment Advisor
D: SQL Tuning Advisor
A: SQL Access Advisor
B: Undo Advisor
C: Segment Advisor
D: SQL Tuning Advisor
举一反三
- Which tasks are run automatically as part of the Automated Maintenance Task by default?() A: Segment Advisor B: SQL Access Advisor C: Optimizer statistics gathering D: Automatic SQL Tuning Advisor E: Automatic Database Diagnostics Monitor
- The market segment profile is ___________.
- I have changed my profile picture (学习通头像) to be my English name and the last 3 digits of my student number. A: Yes, I have done it. B: Not yet, but I plan to. C: No.
- Which of the following are the features of the profile of Philips? ( )
- 下面关于SQL Server中变量的操作正确的是( )。 A: DECLARE @name varchar(8) SET @name='lkl' print '姓名是'+@name B: DECLARE name varchar(8) SET name='lkl' print '姓名是'+name C: print @@VERSION AS '版本', @@SERVERNAME AS '服务器' D: SELECT @@VERSION AS '版本', @@SERVERNAME AS '服务器’