-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExamples.txt
More file actions
79 lines (74 loc) · 2.82 KB
/
Copy pathExamples.txt
File metadata and controls
79 lines (74 loc) · 2.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
This file contains examples of using SQL Update Manager.
Markup:
# - commentary, does not matter to program executing.
1. Update
Updating obsolete procedures:
Command:
update MyDatabase
Output:
#Here will be the list of old procedures.
StoredProcedure1.sql
StoredProcedure2.sql
StoredProcedure3.sql
Update database? [yes/no]
Command:
yes
Output:
#Here will be the list of executed procedures.
Executing procedures. This can take few minutes. Please, wait...
Updating StoredProcedure1.sql...
Success!
Updating StoredProcedure2.sql...
Failed! Error text:
#This message means that during updating it's SQL Error occured. Under this message will be displayed SQL Error Text.
Msg 2714, Level 16, State 3, Server MyServer, Procedure StoredProcedure2, Line 21 There is already object named StoredProcedure2 in database!
Continue update? [yes/no/ignore]
Command:
yes
Output:
Updating StoredProcedure3.sql...
Success!
MyDatabase has been successfully updated.
#This line will be displayed if TableUpdates feature been installed.
tableUpdatesTemplate.data has been updated.
lastUpdate.data has been updated.
2. Installation
#SUM installtion can be started in Install Manager.
Installing instance of SQL Update Manager:
Command:
install
Output:
config.ini has been created.
Please, set the configuration.
If you're made a mistake, you can edit configurations in config.ini.
Or use command [hardreset] to clear all settings.
#If during the installation process Install Manager will be closed, this will cause errors in system.
WARNING! DO NOT CLOSE CONSOLE DURING INSTALLATION PROCESS! THIS MAY CAUSE ERRORS!
SQL Server name:
Command:
MyServerName
Output:
Username:
Command:
MyUserName
Output:
Password:
Command:
Password
Output:
Database names (Split using [space]):
Command:
MyDatabase
Output:
Enter path to stored procedures:
Command:
#Path to folder with stored procedures.
C:\Windows\SSMS\MyDatabase\StoredProcedures
Output:
#Here manager will check if entered data is right.
Checking database configuration, please, wait...
Entered configuration data hase been validated.
...
Required files has been successfully created.
Output
Configuration has been finished.