单段绝热床反应器适用于反应热效应较大,允许反应温度变化较大的场合。
查看答案
甲公司2014年11月份发生如下经济业务:
(1)王林出差预借差旅费1200元,回来后经核实报销1500元,财务补付300元。
(2)某企业生产产品领用A材料一批,其计划成本50000元,本月材料成本差异率为2%。
(3)某企业将闲置不用的一台机床出售给其他企业,原价20000元,已提折旧5000元,双方协议作价14000元,以现金支付清理费用300元,营业税税率为5%,该资产未提资产减值准备。
(4)企业收到出租房屋租金3500元,存入银行。
(5)某企业2013年年末应收账款借方余额200000元,“坏账准备”科目贷方余额3000元,计提坏账的比例为5%。
要求:
(1)编制王林借款、报销时的会计分录。
(2)编制领料及结转差异额的会计分录,并计算实际成本。
(3)编制出售机床的相关会计分录。
(4)编制出租房屋的相关会计分录。
(5)计算应提取的坏账准备数额并编制会计分录。
YouareworkingonanewOracleDatabase11gserver,whereonlythesoftwareisinstalledandnodatabaseiscreated.YouplantocreateadatabaseonthisserverusingtheDatabaseConfigurationAssistant(DBCA).
Someoftherequirementssetforyourdatabasecreationtaskare:
1:Configurethedatabasetooperateinsharedservermode.
2:Disableautomaticmaintenancetaskssuchasoptimizerstatisticscollection.
3:Configureanamingmethodtohelptheremoteuserconnecttothedatabaseinstance.
4:UseAutomaticStorageManagement(ASM)forstoringthedatabasefiles.
5:Configuredailydatabasebackuptoflashrecoveryarea.
6:ConfigureEnterpriseManagerDatabaseControltomanagethedatabase.
Whichoftheserequirementscanbemetwhilecreatingthedatabase()
EMPLOYEES and DEPARTMENTS data:
EMPLOYEES
DEMP_NAME DEPT_ID MGR_ID JOB_ID SALARY
EMPLOYEE_I
101 Smith 20 120 SA_REP 4000
102 Martin 10 105 CLERK 2500
103 Chris 20 120 IT_ADMIN 4200
104 John 30 108 HR_CLERK 2500
105 Diana 30 108 IT_ADMIN 5000
106 Smith 40 110 AD_ASST 3000
108 Jennifer 30 110 HR_DIR 6500
110 Bob 40 EX_DIR 8000
120 Ravi 20 110 SA_DIR 6500
DEPARTMENTS
DEPARTMENT_ID DEPARTMENT_NAME
10 Admin
20 Education
30 IT
40 Human Resources
On the EMPLOYEES table, EMPLOYEE_ID is the primary key. MGR_ID is the ID managers and refers to the EMPLOYEE_ID.
On the DEPARTMENTS table DEPARTMENT_ID is the primary key.
Evaluate this UPDATE statement.
UPDATE employees
SET mgr_id =
(SELECT mgr_id
FROM employees
WHERE dept_id=
(SELECT department_id
FROM departments
WHERE department_name = ‘Administration‘)),
Salary = (SELECT salary
FROM employees
WHERE emp_name = ‘Smith‘)
WHERE job_id = ‘IT_ADMIN‘;
What happens when the statement is executed?()