Загрузил скрипты лаб 1-7
This commit is contained in:
16
Lab6/Task1_1.sql
Normal file
16
Lab6/Task1_1.sql
Normal file
@@ -0,0 +1,16 @@
|
||||
-- This should fail
|
||||
USE AdventureWorks
|
||||
TRUNCATE TABLE [HumanResources].[JobCandidateHistory]
|
||||
GO
|
||||
USE AdventureWorks
|
||||
INSERT INTO [HumanResources].[JobCandidateHistory]
|
||||
VALUES
|
||||
(1,
|
||||
'<ns:Resume xmlns:ns="http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/Resume">
|
||||
<ns:ResumeData></ns:ResumeData>
|
||||
</ns:Resume>'
|
||||
,-1
|
||||
,GETDATE()
|
||||
,1)
|
||||
TRUNCATE TABLE [HumanResources].[JobCandidateHistory]
|
||||
GO
|
||||
Reference in New Issue
Block a user