Which four are correct guidelines for naming database tables? ()A. Must begin with either a number or a letter.B. Must be 1-30 characters long.C. Should not be an Oracle Server reserved word.D. Must contain only A-Z, a-z, 0-+, _, *, and #.E. Must contain

题目
Which four are correct guidelines for naming database tables? ()

A. Must begin with either a number or a letter.

B. Must be 1-30 characters long.

C. Should not be an Oracle Server reserved word.

D. Must contain only A-Z, a-z, 0-+, _, *, and #.

E. Must contain only A-Z, a-z, 0-9, _, $, and #.

F. Must begin with a letter.


相似考题

2.You are a database administrator in the Los Angeles branch office of a specialty foods supplier. A mainframe. database at the headquarters contains all company data. Each branch office contains a SQL Server 2000 computer that imports regional data from the mainframe. database.The server in Los Angeles contains a Data Transformation Services (DTS) package that uses OLE DB to connect to the company's mainframe. database. The DTS package extracts and transforms data about buyers and products for that region. The DTS package then writes the data to the SQL Server database in Los Angeles.You need to configure a SQL Server computer for the new branch office in Sydney. You want to copy the Los Angeles package and modify it so that it writes data to the SQL Server database in Sydney.You use the DTS Designer to modify the DTS package so that it imports regional data from the mainframe. database to the server in Sydney. The modified DTS package runs successfully on the server in Los Angeles. You save this DTS package to the server in Sydney, but the server in Sydney cannot connect to the mainframe. database.You want to enable the server in Sydney to connect to the mainframe. database. What should you do?A.Change the connection properties in the DTS package so that the package uses new login credentials to connect to the mainframe. database.B.Modify the workflow in the DTS package so that the server in Sydney is included.C.On the server in Sydney, install an OLE DB provider for the mainframe. database.D.On the server in Sydney, delete and then re-create the DTS package.

更多“Which four are correct guidelines for naming database tables? () ”相关问题
  • 第1题:

    Youhavecreatedascriptintherecoverycatalogcalledbackup_database.Whichofthefollowingcommandswouldsuccessfullyexecutethatscript?()

    A.run{openscriptbackup_database;runscriptbackup_database}

    B.run{engagescriptbackup_database;}

    C.run{runscriptbackup_database;}

    D.Run{executescriptbackup_database;}

    E.Thenamebackup_databaseisaninvalidnameforanRMANscript.TryingtorunitfromRMAN wouldresultinanerror.


    参考答案:D

  • 第2题:

    Marrywantstocreateanewapplicationonhislaptopthatdoesnothaveanydesignelementsinit.Whichoneofthefollowingshouldhedotobeginhisprocess?()

    A.selectfile->Database->newandgiveitafilenameof“blank.nsf”

    B.selectfile->Database->new,chooselocalastheserver,andchosetheblanktemplate

    C.selectfile->Database->new,chooselocalastheserver,andchosethedefault.ntftemplate

    D.selectfile->Database->new,giveitafilenameof“blank.nsf”,andchosetheblanktemplate


    参考答案:B

  • 第3题:

    下列给字符串二维数组进行赋值的语句中,错误的是()。

    A.String s[ ] [ ] = new String [ ] [ ] { { “One “ , “ Two “ }, { “ Three “ , “ Four “ } } ;

    B.String s[ ] [ ] = { { “ One “ , “Two “},{ “ Three “ , “ Four “ } } ;

    C.String s[ ] [ ] = new String [ ] [ ] { { “Zero”} , { “ One ” , “Two” , “ Three” , “ Four” } } ;

    D.String s[ 2] [2 ] = { { “ One ” , “Two”},{“ Three” , “ Four” } } ;


    String s[ 2] [2 ] = { { “ One ” , “Two”},{“ Three” , “ Four” } } ;

  • 第4题:

    There is only one Web(7)technology URIs.

    A.accessing

    B.naming/addressing

    C.communicating

    D.searching


    正确答案:B
    解析:网络上只有一种命名/寻址技术:URIs。

  • 第5题:

    Anadministratorisplanningaclusterrunningapplicationsin3separateresourcegroups.RGA-Database1RGB-WebServerRGC-Database2Database1andDatabase2mustbeonlinebeforetheWebServer.AllresourcegroupshaveaStartupPolicyofOnlineonHomeNodeOnly.Whichofthefollowingwillensurethattheresourcegroupsareprocessedinthecorrectorder?()

    A.SettheSerialAcquisitionOrder

    B.SettheParallelAcquisitionOrder

    C.ConfigureOnlineontheSameNodeDependency

    D.ConfigureOnlineonDifferentNodesDependency


    参考答案:A

  • 第6题:

    以下数据绑定语句,正确的是()。

    A.Dim ds as new DataSet () dataGridView1.DataSource = ds.Tables.Item(Index)

    B.Dim dt as new DataTable() dataGridView1.DataSource=dt

    C.Dim dt as new DataTable() dataGridView1.DataSource=Tables("表名")

    D.Dim ds as new DataSet () dataGridView1.DataSource = ds.Tables("表名")


    B