Pastebin
API
tools
faq
paste
Login
Sign up
Please fix the following errors:
New Paste
Syntax Highlighting
use northwind select * from Customers where TerritoryID is not null select * from Employees select * from Territories select * from EmployeeTerritories select * from Orders where ShippedDate is null /* Problem Problem We develop a system which couples the trading database of the Northwind Co. running on the PRIM server instances to the HR database running on the THIRD server. In the Northwind database, the territories for which an agent (i.e. an employee) is responsible are listed in the EmployeeTerritories table, which acts as a linking table between the Employees and Territories tables. A territory is assigned to an employee by inserting a new record in the linking table. The expected minimum functionality, for 70% of the points is that when a new territory is assigned to an employee in the trading database, a notification should be sent from the HR database ASAP, to those customers who are located on the territory and have at least one active (not yet shipped) order. The note should include the name and phone number of the customer as well as the contact name and company name of the customer. You can simulate the sending of the notification by printing a message like this: “Dear Maria Anders at Alfreds Futterkiste, please not that as of today a new Northwind agent, Robert King, phone (71) 555-5598, is a your service” The expected full functionality is that you process not only new entries in the EmployeeTerritories table but also changed records, when an existing record is changed. In this case, send a message to the customers of the new territory as well as the customers of the unassigned territory, the latter something like “…we regret to inform you that Mr. XY will no longer be at your service etc”. */ /*Stored procedure*/ alter procedure send_message_to_customers @territory_id nvarchar(20), @employee_id int as set nocount on declare @customer_name varchar(50), @company_name varchar(50), @i int, @str varchar(150), @res_no int select @res_no=count(*) from Employees where EmployeeID = @employee_id if @res_no=0 print 'No matching record.' else if @res_no>1 print 'More than one matching record.' else begin --if we have a valid employee select @str = (FirstName + ' ' + LastName + ' phone ' + HomePhone) from Employees where EmployeeID = @employee_id begin tran begin try declare customer_cursor cursor for select distinct(Customers.ContactName), Customers.CompanyName from Customers join Orders on Customers.CustomerID = Orders.CustomerID where TerritoryID like @territory_id and ShippedDate is null set @i=1 open customer_cursor fetch next from customer_cursor into @customer_name, @company_name while @@fetch_status = 0 begin print 'Dear ' + @customer_name + ' at ' + @company_name + ', please not that as of today a new Northwind agent, ' + @str + ', is a your service!' set @i=@i+1 fetch next from customer_cursor into @customer_name, @company_name end close customer_cursor deallocate customer_cursor commit tran end try begin catch print 'OTHER ERROR: '+ ERROR_MESSAGE() + ' (' + cast(ERROR_NUMBER() as varchar(20)) + ')' print 'Rolling back transaction' rollback tran end catch end /*Test stored procedure*/ exec send_message_to_customers '01581', 1 /*Triggers*/ /*Insert trigger*/ create trigger new_agent_inserted on EmployeeTerritories for insert as declare @employee_id int, @territory_id nvarchar(20) select @employee_id=EmployeeID, @territory_id = TerritoryID from inserted exec send_message_to_customers @territory_id, @employee_id go /*Test insert trigger*/ delete from EmployeeTerritories where TerritoryID = '01581' insert into EmployeeTerritories (EmployeeID, TerritoryID) values(9, '01581') /*Update trigger*/ alter trigger agent_updated on EmployeeTerritories for update as declare @employee_id int, @territory_id nvarchar(20) select @employee_id=EmployeeID, @territory_id = TerritoryID from inserted exec send_message_to_customers @territory_id, @employee_id go update EmployeeTerritories set TerritoryID = '01581' where EmployeeID = 9 and TerritoryID = '03049'
Optional Paste Settings
Category:
None
Cryptocurrency
Cybersecurity
Fixit
Food
Gaming
Haiku
Help
History
Housing
Jokes
Legal
Money
Movies
Music
Pets
Photo
Science
Software
Source Code
Spirit
Sports
Travel
TV
Writing
Tags:
Syntax Highlighting:
None
Bash
C
C#
C++
CSS
HTML
JSON
Java
JavaScript
Lua
Markdown (PRO members only)
Objective C
PHP
Perl
Python
Ruby
Swift
4CS
6502 ACME Cross Assembler
6502 Kick Assembler
6502 TASM/64TASS
ABAP
AIMMS
ALGOL 68
APT Sources
ARM
ASM (NASM)
ASP
ActionScript
ActionScript 3
Ada
Apache Log
AppleScript
Arduino
Asymptote
AutoIt
Autohotkey
Avisynth
Awk
BASCOM AVR
BNF
BOO
Bash
Basic4GL
Batch
BibTeX
Blitz Basic
Blitz3D
BlitzMax
BrainFuck
C
C (WinAPI)
C Intermediate Language
C for Macs
C#
C++
C++ (WinAPI)
C++ (with Qt extensions)
C: Loadrunner
CAD DCL
CAD Lisp
CFDG
CMake
COBOL
CSS
Ceylon
ChaiScript
Chapel
Clojure
Clone C
Clone C++
CoffeeScript
ColdFusion
Cuesheet
D
DCL
DCPU-16
DCS
DIV
DOT
Dart
Delphi
Delphi Prism (Oxygene)
Diff
E
ECMAScript
EPC
Easytrieve
Eiffel
Email
Erlang
Euphoria
F#
FO Language
Falcon
Filemaker
Formula One
Fortran
FreeBasic
FreeSWITCH
GAMBAS
GDB
GDScript
Game Maker
Genero
Genie
GetText
Go
Godot GLSL
Groovy
GwBasic
HQ9 Plus
HTML
HTML 5
Haskell
Haxe
HicEst
IDL
INI file
INTERCAL
IO
ISPF Panel Definition
Icon
Inno Script
J
JCL
JSON
Java
Java 5
JavaScript
Julia
KSP (Kontakt Script)
KiXtart
Kotlin
LDIF
LLVM
LOL Code
LScript
Latex
Liberty BASIC
Linden Scripting
Lisp
Loco Basic
Logtalk
Lotus Formulas
Lotus Script
Lua
M68000 Assembler
MIX Assembler
MK-61/52
MPASM
MXML
MagikSF
Make
MapBasic
Markdown (PRO members only)
MatLab
Mercury
MetaPost
Modula 2
Modula 3
Motorola 68000 HiSoft Dev
MySQL
Nagios
NetRexx
Nginx
Nim
NullSoft Installer
OCaml
OCaml Brief
Oberon 2
Objeck Programming Langua
Objective C
Octave
Open Object Rexx
OpenBSD PACKET FILTER
OpenGL Shading
Openoffice BASIC
Oracle 11
Oracle 8
Oz
PARI/GP
PCRE
PHP
PHP Brief
PL/I
PL/SQL
POV-Ray
ParaSail
Pascal
Pawn
Per
Perl
Perl 6
Phix
Pic 16
Pike
Pixel Bender
PostScript
PostgreSQL
PowerBuilder
PowerShell
ProFTPd
Progress
Prolog
Properties
ProvideX
Puppet
PureBasic
PyCon
Python
Python for S60
QBasic
QML
R
RBScript
REBOL
REG
RPM Spec
Racket
Rails
Rexx
Robots
Roff Manpage
Ruby
Ruby Gnuplot
Rust
SAS
SCL
SPARK
SPARQL
SQF
SQL
SSH Config
Scala
Scheme
Scilab
SdlBasic
Smalltalk
Smarty
StandardML
StoneScript
SuperCollider
Swift
SystemVerilog
T-SQL
TCL
TeXgraph
Tera Term
TypeScript
TypoScript
UPC
Unicon
UnrealScript
Urbi
VB.NET
VBScript
VHDL
VIM
Vala
Vedit
VeriLog
Visual Pro Log
VisualBasic
VisualFoxPro
WHOIS
WhiteSpace
Winbatch
XBasic
XML
XPP
Xojo
Xorg Config
YAML
YARA
Z80 Assembler
ZXBasic
autoconf
jQuery
mIRC
newLISP
q/kdb+
thinBasic
Paste Expiration:
Never
Burn after read
10 Minutes
1 Hour
1 Day
1 Week
2 Weeks
1 Month
6 Months
1 Year
Paste Exposure:
Public
Unlisted
Private
Folder:
(members only)
Password
NEW
Enabled
Disabled
Burn after read
NEW
Paste Name / Title:
Create New Paste
Hello
Guest
Sign Up
or
Login
Sign in with Facebook
Sign in with Twitter
Sign in with Google
You are currently not logged in, this means you can not edit or delete anything you paste.
Sign Up
or
Login
Public Pastes
Slide notes
4 hours ago | 2.46 KB
AMP floater example implementation
7 hours ago | 2.32 KB
HUB
8 hours ago | 0.01 KB
Verification
1 day ago | 0.19 KB
Secrets.kd
1 day ago | 0.25 KB
STAN internet
1 day ago | 2.03 KB
Vscode-Extensions
1 day ago | 0.88 KB
Mapscan v2.4 - Archeagus Grey Hack Series, Ep...
JavaScript | 2 days ago | 12.26 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!