ko/Microsoft.SqlServer.Management.PSSnapins.dll-Help.xml

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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
<?xml version="1.0" encoding="utf-8"?>
 
<helpItems xmlns="http://msh" schema="maml">
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Add-SqlAvailabilityDatabase</command:name><maml:description><maml:para>InputObject 또는 Path 매개 변수에 지정된 가용성 그룹에 하나 이상의 보조 데이터베이스를 조인하거나 하나 이상의 주 데이터베이스를 추가합니다.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Add</command:verb><command:noun>SqlAvailabilityDatabase</command:noun><dev:version /></command:details><maml:description><maml:para>Add-SqlAvailabilityDatabase cmdlet은 InputObject 또는 Path 매개 변수에 지정된 가용성 그룹에 하나 이상의 보조 데이터베이스를 조인하거나 하나 이상의 주 데이터베이스를 추가합니다.
</maml:para><maml:para>하나 이상의 데이터베이스를 가용성 그룹에 추가하려면 주 복제본을 호스팅하는 서버 인스턴스에서 이 cmdlet을 실행하고 하나 이상의 로컬 사용자 데이터베이스를 지정합니다.
</maml:para><maml:para>가용성 그룹에 보조 데이터베이스를 조인하려면 보조 복제본을 호스팅하는 서버 인스턴스에서 보조 데이터베이스를 수동으로 준비한 다음, 보조 복제본을 호스팅하는 서버 인스턴스에서 이 cmdlet을 실행합니다.
</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Add-SqlAvailabilityDatabase</maml:name><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>가용성 그룹의 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue, ByPropertyName)" position="named" aliases=""><maml:name>Database</maml:name><maml:description><maml:para>Path 또는 InputObject 매개 변수에 지정된 가용성 그룹에 추가 또는 조인할 하나 이상의 사용자 데이터베이스의 배열을 지정합니다. 이러한 데이터베이스는 SQL Server의 로컬 인스턴스에 있어야 합니다. 지정된 데이터베이스는 하나의 가용성 그룹에만 속할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Add-SqlAvailabilityDatabase</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>데이터베이스를 추가 또는 조인하고 있는 가용성 그룹의 AvailabilityGroup 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Target</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue, ByPropertyName)" position="named" aliases=""><maml:name>Database</maml:name><maml:description><maml:para>Path 또는 InputObject 매개 변수에 지정된 가용성 그룹에 추가 또는 조인할 하나 이상의 사용자 데이터베이스의 배열을 지정합니다. 이러한 데이터베이스는 SQL Server의 로컬 인스턴스에 있어야 합니다. 지정된 데이터베이스는 하나의 가용성 그룹에만 속할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue, ByPropertyName)" position="named" aliases=""><maml:name>Database</maml:name><maml:description><maml:para>Path 또는 InputObject 매개 변수에 지정된 가용성 그룹에 추가 또는 조인할 하나 이상의 사용자 데이터베이스의 배열을 지정합니다. 이러한 데이터베이스는 SQL Server의 로컬 인스턴스에 있어야 합니다. 지정된 데이터베이스는 하나의 가용성 그룹에만 속할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>데이터베이스를 추가 또는 조인하고 있는 가용성 그룹의 AvailabilityGroup 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Target</command:parameterValue><dev:type><maml:name>Target</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>가용성 그룹의 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>Microsoft.SqlServer.Management.Smo.AvailabilityGroup</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>
 
-------------------------- EXAMPLE 1 --------------------------
 
 
                      </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Add-SqlAvailabilityDatabase -Path SQLSERVER:\SQL\PrimaryServer\InstanceName\AvailabilityGroups\MyAG -Database "MyDatabase"
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'MyDatabase' 데이터베이스를 'MyAG' 가용성 그룹에 추가합니다. 이 명령은 가용성 그룹의 주 서버 인스턴스에 실행해야 하며 데이터 동기화를 위해 보조 데이터베이스를 준비하지 않습니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
 
-------------------------- EXAMPLE 2 --------------------------
 
 
                      </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Add-SqlAvailabilityDatabase -Path SQLSERVER:\SQL\SecondaryServer\InstanceName\AvailabilityGroups\MyAG -Database "MyDatabase"
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 보조 복제본을 호스팅하는 서버 인스턴스 중 하나에 있는 'MyAG' 가용성 그룹에 'MyDatabase' 보조 데이터베이스를 조인합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
 
-------------------------- EXAMPLE 3 --------------------------
 
 
                      </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;$DatabaseBackupFile = "\\share\backups\MyDatabase.bak"
$LogBackupFile = "\\share\backups\MyDatabase.trn"
$MyAgPrimaryPath = "SQLSERVER:\SQL\PrimaryServer\InstanceName\AvailabilityGroups\MyAg"
$MyAgSecondaryPath = "SQLSERVER:\SQL\SecondaryServer\InstanceName\AvailabilityGroups\MyAg"
 
Backup-SqlDatabase -Database "MyDatabase" -BackupFile $DatabaseBackupFile -ServerInstance "PrimaryServer\InstanceName"
Backup-SqlDatabase -Database "MyDatabase" -BackupFile $LogBackupFile -ServerInstance "PrimaryServer\InstanceName" -BackupAction 'Log'
Restore-SqlDatabase -Database "MyDatabase" -BackupFile $DatabaseBackupFile -ServerInstance "SecondaryServer\InstanceName" -NoRecovery
Restore-SqlDatabase -Database "MyDatabase" -BackupFile $LogBackupFile -ServerInstance "SecondaryServer\InstanceName" -RestoreAction 'Log' -NoRecovery
 
Add-SqlAvailabilityDatabase -Path $MyAgPrimaryPath -Database "MyDatabase"
Add-SqlAvailabilityDatabase -Path $MyAgSecondaryPath -Database "MyDatabase"
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 예에서는 가용성 그룹의 주 복제본을 호스팅하는 서버 인스턴스에 있는 데이터베이스에서 보조 데이터베이스를 준비하고, 이 데이터베이스를 가용성 그룹에 추가한 다음(주 데이터베이스로), 보조 데이터베이스를 가용성 그룹에 조인하는 전체 과정을 보여 줍니다. 가장 먼저, 이 예에서는 데이터베이스와 해당 트랜잭션 로그를 백업합니다. 그런 다음 보조 복제본을 호스팅하는 서버 인스턴스로 데이터베이스 및 로그 백업을 복원합니다. 이 예에서는 Add-SqlAvailabilityDatabase를 두 번 호출합니다. 먼저 주 복제본에서 호출해서 데이터베이스를 가용성 그룹에 추가한 다음, 보조 복제본에서 호출해서 해당 복제본에 있는 보조 데이터베이스를 가용성 그룹에 조인합니다. 보조 복제본이 두 개 이상인 경우 각 보조 복제본에서 보조 데이터베이스를 복원 및 조인합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
 
-------------------------- EXAMPLE 4 --------------------------
 
 
                      </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Add-SqlAvailabilityDatabase -Path SQLSERVER:\SQL\PrimaryServer\InstanceName\AvailabilityGroups\MyAG -Database "MyDatabase" -Script
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'MyAg' 가용성 그룹에 'MyDatabase' 데이터베이스를 추가하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>SQL Server Books Online: Adding a Database to an Availability Group (SQL Server)</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>SQL Server Books Online: Joining a Secondary Replica to an Availability Group (SQL Server)</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>SQL Server Books Online: Specifying the Endpoint URL for an Availability Replica (SQL Server)</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Add-SqlAvailabilityGroupListenerStaticIp</command:name><maml:description><maml:para>기존 가용성 그룹 수신기 구성에 고정 IP 주소를 추가합니다.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Add</command:verb><command:noun>SqlAvailabilityGroupListenerStaticIp</command:noun><dev:version /></command:details><maml:description><maml:para>Add-SqlAvailabilityGroupListenerStaticIp cmdlet은 기존 가용성 그룹 수신기 구성에 고정 IP 주소를 추가합니다. 매개 변수로 AvailabilityGroupListener, 경로 및 고정 IP 주소를 사용합니다. IP 주소는 서브넷이 있는 IPv4 주소이거나 IPv6 주소일 수 있습니다. 이 cmdlet은 주 복제본을 호스팅하는 서버 인스턴스에서만 실행할 수 있습니다.
</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Add-SqlAvailabilityGroupListenerStaticIp</maml:name><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>가용성 그룹 수신기의 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>StaticIp</maml:name><maml:description><maml:para>가용성 그룹 수신기에 추가할 고정 IP 주소입니다. 이 인수는 문자열의 목록이어야 합니다. 각 문자열은 IPv4 주소와 슬래시 다음에 표기한 서브넷 마스크(예: 192.168.1.1/255.255.255.0) 또는 IPv6 주소일 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Add-SqlAvailabilityGroupListenerStaticIp</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>IP 주소를 추가하고 있는 수신기의 AvailabilityGroupListener 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Target</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>StaticIp</maml:name><maml:description><maml:para>가용성 그룹 수신기에 추가할 고정 IP 주소입니다. 이 인수는 문자열의 목록이어야 합니다. 각 문자열은 IPv4 주소와 슬래시 다음에 표기한 서브넷 마스크(예: 192.168.1.1/255.255.255.0) 또는 IPv6 주소일 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>IP 주소를 추가하고 있는 수신기의 AvailabilityGroupListener 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Target</command:parameterValue><dev:type><maml:name>Target</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>가용성 그룹 수신기의 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>StaticIp</maml:name><maml:description><maml:para>가용성 그룹 수신기에 추가할 고정 IP 주소입니다. 이 인수는 문자열의 목록이어야 합니다. 각 문자열은 IPv4 주소와 슬래시 다음에 표기한 서브넷 마스크(예: 192.168.1.1/255.255.255.0) 또는 IPv6 주소일 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>Microsoft.SqlServer.Management.Smo.AvailabilityGroupListener</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>
 
 
 
                -------------------------- EXAMPLE 1 --------------------------
 
 
 
            </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;$path = "SQLSERVER:\SQL\PrimaryServer\InstanceName\AvailabilityGroups\MyAg\AvailabilityGroupListeners\MyListener"
Add-SqlAvailabilityGroupListenerStaticIp -Path $path -StaticIp "2001:0db8:85a3:0000:0000:8a2e:0370:7334"
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 예에서는 'MyAg' 가용성 그룹의 'MyListener' 가용성 그룹 수신기에 고정 IPv4 주소를 추가합니다. 이 IPv4 주소는 255.255.252.0 서브넷에서 수신기의 가상 IP 주소로 사용됩니다. 가용성 그룹이 복수 서브넷에 있는 경우 각 서브넷에 대한 고정 IP 주소를 수신기에 추가해야 합니다. Add-SqlAvailabilityGroupListenerStaticIp 명령은 주 복제본을 호스팅하는 서버 인스턴스에서 실행해야 합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
 
 
 
                -------------------------- EXAMPLE 2 --------------------------
 
 
 
            </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;$path = "SQLSERVER:\SQL\PrimaryServer\InstanceName\AvailabilityGroups\MyAg\AvailabilityGroupListeners\MyListener"
Add-SqlAvailabilityGroupListenerStaticIp -Path $path -StaticIp "2001:0db8:85a3:0000:0000:8a2e:0370:7334"
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'MyAg' 가용성 그룹의 'MyListener' 가용성 그룹 수신기에 고정 IPv6 주소를 추가합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
 
 
 
                -------------------------- EXAMPLE 3 --------------------------
 
 
 
            </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;$path = "SQLSERVER:\SQL\PrimaryServer\InstanceName\AvailabilityGroups\MyAg\AvailabilityGroupListeners\MyListener"
Add-SqlAvailabilityGroupListenerStaticIp -Path $path -StaticIp "192.168.0.1/255.255.255.0" -Script
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'MyAg' 가용성 그룹의 'MyListener' 수신기에 고정 IPv4 주소를 추가하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText></maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Add-SqlFirewallRule</command:name><maml:description><maml:para>특정 SQL Server 인스턴스에 대한 연결을 허용하는 Windows 방화벽 규칙을 추가합니다.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Add</command:verb><command:noun>SqlFirewallRule</command:noun><dev:version /></command:details><maml:description><maml:para>지정된 SQL Server 인스턴스에 대한 연결을 허용하는 Windows 방화벽 규칙을 추가합니다. </maml:para><maml:para>SQL Server 클라우드 어댑터가 SQL Server 인스턴스를 호스팅하는 컴퓨터에서 실행되고 있어야 하며 액세스 가능해야 합니다.</maml:para><maml:para>이 cmdlet은 다음과 같은 작업 모드를 지원합니다.</maml:para><maml:para>1. 인스턴스 PowerShell 경로 지정</maml:para><maml:para>2. 서버 개체 지정</maml:para><maml:para>3. 대상 SQL Server 인스턴스의 ServerInstance 지정</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Add-SqlFirewallRule</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases=""><maml:name>Credential</maml:name><maml:description><maml:para>대상 컴퓨터에서 Windows 관리자 자격 증명을 사용하여 사용자 계정을 지정합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AcceptSelfSignedCertificate</maml:name><maml:description><maml:para>이 cmdlet이 사용자에게 확인 메시지를 표시하지 않고 대상 컴퓨터의 자체 서명된 SQL Server 클라우드 어댑터 인증서를 자동으로 적용하도록 합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ManagementPublicPort</maml:name><maml:description><maml:para>대상 컴퓨터의 공용 관리 포트입니다. 대상 컴퓨터의 포트가 직접 액세스 가능하지는 않지만 끝점을 통해 노출되는 경우, 즉 다른 포트에 연결해야 하는 경우에 이 매개 변수를 사용해야 합니다.</maml:para><maml:para>SQL Server 클라우드 어댑터는 이 포트에서 액세스 가능해야 합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>작업을 실행할 SQL Server 인스턴스의 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RetryTimeout</maml:name><maml:description><maml:para>대상 서버에서 명령을 다시 시도하는 기간입니다. 이 제한 시간이 만료되면 다시 시도되지 않습니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Add-SqlFirewallRule</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases=""><maml:name>Credential</maml:name><maml:description><maml:para>대상 컴퓨터에서 Windows 관리자 자격 증명을 사용하여 사용자 계정을 지정합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AcceptSelfSignedCertificate</maml:name><maml:description><maml:para>이 cmdlet이 사용자에게 확인 메시지를 표시하지 않고 대상 컴퓨터의 자체 서명된 SQL Server 클라우드 어댑터 인증서를 자동으로 적용하도록 합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ManagementPublicPort</maml:name><maml:description><maml:para>대상 컴퓨터의 공용 관리 포트입니다. 대상 컴퓨터의 포트가 직접 액세스 가능하지는 않지만 끝점을 통해 노출되는 경우, 즉 다른 포트에 연결해야 하는 경우에 이 매개 변수를 사용해야 합니다.</maml:para><maml:para>SQL Server 클라우드 어댑터는 이 포트에서 액세스 가능해야 합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RetryTimeout</maml:name><maml:description><maml:para>대상 서버에서 명령을 다시 시도하는 기간입니다. 이 제한 시간이 만료되면 다시 시도되지 않습니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="named" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>대상 SQL Server 인스턴스의 서버 개체입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="true">Server[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Add-SqlFirewallRule</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases=""><maml:name>Credential</maml:name><maml:description><maml:para>대상 컴퓨터에서 Windows 관리자 자격 증명을 사용하여 사용자 계정을 지정합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AcceptSelfSignedCertificate</maml:name><maml:description><maml:para>이 cmdlet이 사용자에게 확인 메시지를 표시하지 않고 대상 컴퓨터의 자체 서명된 SQL Server 클라우드 어댑터 인증서를 자동으로 적용하도록 합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ManagementPublicPort</maml:name><maml:description><maml:para>대상 컴퓨터의 공용 관리 포트입니다. 대상 컴퓨터의 포트가 직접 액세스 가능하지는 않지만 끝점을 통해 노출되는 경우, 즉 다른 포트에 연결해야 하는 경우에 이 매개 변수를 사용해야 합니다.</maml:para><maml:para>SQL Server 클라우드 어댑터는 이 포트에서 액세스 가능해야 합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RetryTimeout</maml:name><maml:description><maml:para>대상 서버에서 명령을 다시 시도하는 기간입니다. 이 제한 시간이 만료되면 다시 시도되지 않습니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue, ByPropertyName)" position="named" aliases=""><maml:name>ServerInstance</maml:name><maml:description><maml:para>이 매개 변수는 작업의 대상이 되는 SQL Server 인스턴스의 이름을 지정합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AcceptSelfSignedCertificate</maml:name><maml:description><maml:para>이 cmdlet이 사용자에게 확인 메시지를 표시하지 않고 대상 컴퓨터의 자체 서명된 SQL Server 클라우드 어댑터 인증서를 자동으로 적용하도록 합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases=""><maml:name>Credential</maml:name><maml:description><maml:para>대상 컴퓨터에서 Windows 관리자 자격 증명을 사용하여 사용자 계정을 지정합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue><dev:type><maml:name>PSCredential</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="named" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>대상 SQL Server 인스턴스의 서버 개체입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="true">Server[]</command:parameterValue><dev:type><maml:name>Server[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ManagementPublicPort</maml:name><maml:description><maml:para>대상 컴퓨터의 공용 관리 포트입니다. 대상 컴퓨터의 포트가 직접 액세스 가능하지는 않지만 끝점을 통해 노출되는 경우, 즉 다른 포트에 연결해야 하는 경우에 이 매개 변수를 사용해야 합니다.</maml:para><maml:para>SQL Server 클라우드 어댑터는 이 포트에서 액세스 가능해야 합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>작업을 실행할 SQL Server 인스턴스의 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RetryTimeout</maml:name><maml:description><maml:para>대상 서버에서 명령을 다시 시도하는 기간입니다. 이 제한 시간이 만료되면 다시 시도되지 않습니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue, ByPropertyName)" position="named" aliases=""><maml:name>ServerInstance</maml:name><maml:description><maml:para>이 매개 변수는 작업의 대상이 되는 SQL Server 인스턴스의 이름을 지정합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title></maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;CD SQLSERVER:\SQL\Computer\Instance;
Add-SqlFirewallRule  -Credential $credential -AcceptSelfSignedCertificate;
 
</dev:code><dev:remarks><maml:para>이 명령은 이 컴퓨터의 ‘Instance’ SQL Server 인스턴스에 대한 연결을 허용하는 Windows 방화벽 규칙을 ‘Computer’ 컴퓨터에서 추가합니다. 작업이 발생해야 하는 서버 인스턴스를 확인하기 위해 현재 작업 디렉터리가 사용됩니다. 사용자에게 확인 메시지를 표시하지 않고 대상 컴퓨터의 자체 서명된 인증서가 자동으로 적용됩니다.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title></maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>This command retrieves all instances of SQL Server on the machine ‘MachineName’ and adds Windows Firewall rules to allow connections for each one of them. The self-signed certificate of the target machine will be automatically accepted without prompting the user.
PS C:\&gt;Get-SqlInstance -Credential $credential -MachineName "MachineName" | Add-SqlFirewallRule  -Credential $credential -AcceptSelfSignedCertificate;
 
</dev:code><dev:remarks><maml:para></maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Online Version:</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Backup-SqlDatabase</command:name><maml:description><maml:para>Backup-SqlDatabase cmdlet은 SQL Server 데이터베이스에 백업 작업을 수행합니다.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Backup</command:verb><command:noun>SqlDatabase</command:noun><dev:version /></command:details><maml:description><maml:para>Backup-SqlDatabase cmdlet은 SQL Server 데이터베이스에 백업 작업을 수행합니다. 백업 작업에는 전체 데이터베이스 백업, 트랜잭션 로그 백업 및 데이터베이스 파일 백업이 포함됩니다. 이 cmdlet은 Microsoft.SqlServer.Management.Smo.Backup 클래스 다음에 모델링됩니다. 이 클래스의 매개 변수는 일반적으로 Smo 개체의 속성에 해당합니다.
</maml:para><maml:para>이 cmdlet은 서버 인스턴스에서 지정된 이름을 가진 데이터베이스 백업에 네 작업 모드를 지원합니다.
</maml:para><maml:para>1. 서버 인스턴스의 경로를 -Path 매개 변수로 전달하고 데이터베이스 이름을 -Database 매개 변수로 전달합니다.
</maml:para><maml:para>2. Smo.Server 개체를 직접 또는 파이프라인을 통해 -InputObject 매개 변수로 전달하고 데이터베이스 이름을 -Database 매개 변수로 전달합니다.
</maml:para><maml:para>3. 서버 인스턴스의 이름을 -ServerInstance 매개 변수로 전달하고 데이터베이스 이름을 -Database 매개 변수로 전달합니다.
</maml:para><maml:para>4. Smo.Database 개체를 직접 또는 파이프라인을 통해 -DatabaseObject 매개 변수로 전달합니다.
</maml:para><maml:para>기본적으로 cmdlet은 전체 데이터베이스 백업을 수행합니다. -BackupAction 매개 변수를 지정하여 백업 유형을 설정할 수 있습니다.
</maml:para><maml:para>백업 파일은 기본적으로 전체 및/또는 파일 백업의 경우 "databasename.bak" 이름으로 기본 서버 백업 위치에 저장되며 로그 백업의 경우 "databasename.trn"으로 저장됩니다.
</maml:para><maml:para>-BackupFile 매개 변수를 지정하여 백업 파일의 위치 및 파일 이름을 설정할 수 있습니다. BackupFile 매개 변수를 사용하여 파일의 위치 및 이름을 모두 포함하도록 정규화된 백업 파일 이름을 지정합니다.
</maml:para><maml:para>BackupContainer 매개 변수는 백업 파일의 위치를 설정하는 데 사용됩니다. 이 경우 백업 파일 이름이 자동으로 생성됩니다. BackupContainer BackupContainer 매개 변수는 백업 파일의 위치를 지정하는 데 사용됩니다. 자세한 내용은 BackupContainer 매개 변수 설명을 참조하십시오.
</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Backup-SqlDatabase</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Database</maml:name><maml:description><maml:para>백업할 데이터베이스의 이름입니다. -Database는 -DatabaseObject 매개 변수와 함께 사용할 수 없습니다.
</maml:para><maml:para>-Database 매개 변수가 지정된 경우 -Path, -InputObject 또는 -ServerInstance 매개 변수도 지정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>BackupFile</maml:name><maml:description><maml:para>백업의 위치 및 파일 이름입니다. 선택적 매개 변수입니다. 지정되지 않은 경우, 백업은 전체 및 파일 백업의 경우 "databasename.bak" 이름으로 서버의 기본 백업 위치에 저장되며 로그 백업의 경우 "databasename.trn"으로 저장됩니다. 이 매개 변수는 BackupDevice 또는 BackupContainer 매개 변수와 함께 사용할 수 없습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupAction</maml:name><maml:description><maml:para>수행할 백업 작업의 유형입니다. 유효한 옵션은 다음과 같습니다. 다음과 같이 Database, Files 또는 Log가 있습니다.
</maml:para><maml:para>Database: 데이터베이스에 있는 모든 데이터 파일을 백업합니다.
</maml:para><maml:para>Files: 지정한 데이터 파일을 백업합니다. DatabaseFile 또는 DatabaseFileGroup 매개 변수를 설정해야 합니다.
</maml:para><maml:para>Log: 트랜잭션 로그를 백업합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupActionType</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupContainer</maml:name><maml:description><maml:para>백업이 저장되는 폴더 또는 위치입니다. 디스크의 폴더 또는 Windows Azure Blob 컨테이너의 URL일 수 있습니다. 이 매개 변수는 지정된 인스턴스에서 여러 데이터베이스를 백업할 때 유용합니다. 이 매개 변수는 BackupDevice 매개 변수와 함께 사용할 수 없습니다. BackupContainer 매개 변수는 BackupFile 매개 변수와 함께 사용할 수 없습니다.
</maml:para><maml:para>참고: 위치를 지정하는 데 사용된 경로는 슬래시(/)로 끝나야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupDevice</maml:name><maml:description><maml:para>백업이 저장될 장치입니다. 이 매개 변수는 BackupFile 매개 변수와 함께 사용할 수 없습니다. 테이프에 백업하는 경우 이 매개 변수를 사용합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">BackupDeviceItem[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupSetDescription</maml:name><maml:description><maml:para>백업 설정에 대해 선택적으로 입력할 수 있는 설명입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupSetName</maml:name><maml:description><maml:para>백업 세트의 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BlockSize</maml:name><maml:description><maml:para>백업의 물리적 블록 크기(바이트)입니다. 지원되는 크기는 512, 1024, 2048, 4096, 8192, 16384, 32768 및 65536(64KB) 바이트입니다. 테이프 장치의 기본값은 65536이고 그렇지 않은 경우에는 512입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BufferCount</maml:name><maml:description><maml:para>백업 작업에 사용되는 I/O 버퍼의 총 수입니다. 임의의 양의 정수를 지정할 수 있습니다. 많은 버퍼를 사용할 경우 Sqlservr.exe 프로세스에 가상 주소 공간이 충분하지 않아 "out of memory" 오류가 발생할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Checksum</maml:name><maml:description><maml:para>백업 작업 중 체크섬 값을 계산합니다. 설정되지 않은 경우는 체크섬이 계산되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>CompressionOption</maml:name><maml:description><maml:para>백업 작업의 압축 옵션은 Default, On 및 Off가 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupCompressionOptions</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ContinueAfterError</maml:name><maml:description><maml:para>체크섬 오류가 발생할 경우 작업이 계속됩니다. 설정되지 않은 경우 체크섬 오류 후 작업이 실패합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>CopyOnly</maml:name><maml:description><maml:para>백업이 복사 전용 백업입니다. 복사 전용 백업은 정기적으로 예약되어 수행되는 기존 백업의 정상 순서에 영향을 미치지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>DatabaseFile</maml:name><maml:description><maml:para>백업할 데이터베이스 파일이 하나 이상 있습니다. BackupAction 속성이 Files로 설정된 경우에만 사용됩니다. BackupAction 매개 변수가 Files로 설정된 경우 DatabaseFileGroups 속성 또는 DatabaseFiles 속성을 반드시 지정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>DatabaseFileGroup</maml:name><maml:description><maml:para>백업 작업의 대상인 데이터베이스 파일 그룹입니다. BackupAction 속성이 Files로 설정된 경우에만 사용됩니다. BackupAction 매개 변수가 Files로 설정된 경우 DatabaseFileGroups 속성 또는 DatabaseFiles 속성을 반드시 지정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>EncryptionOption</maml:name><maml:description><maml:para>백업 작업의 암호화 옵션입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupEncryptionOptions</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ExpirationDate</maml:name><maml:description><maml:para>백업 세트가 만료되고 백업 데이터가 더 이상 유효하지 않은 것으로 간주되는 날짜 및 시간입니다. 디스크 또는 테이프 장치에 저장된 백업 데이터에만 사용할 수 있습니다. 만료 날짜보다 오래된 백업 세트는 나중의 백업으로 덮어쓸 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">DateTime</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>FormatMedia</maml:name><maml:description><maml:para>백업 작업의 첫 번째 단계로 테이프를 포맷합니다. 디스크 백업에는 적용되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Incremental</maml:name><maml:description><maml:para>차등 백업을 수행합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Initialize</maml:name><maml:description><maml:para>백업 작업과 연결된 장치가 초기화됩니다. 미디어의 모든 기존 백업 세트를 덮어쓰고 이 백업은 해당 미디어의 첫 번째 백업 세트가 됩니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>LogTruncationType</maml:name><maml:description><maml:para>로그 백업의 잘림 동작입니다. TruncateOnly, NoTruncate 또는 Truncate 옵션이 있습니다. 기본적으로 이 옵션은 Truncate으로 설정되어 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupTruncateLogType</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MaxTransferSize</maml:name><maml:description><maml:para>백업 미디어와 SQL Server 인스턴스 간에 전송할 최대 바이트 수입니다. 가능한 값은 최대 4194304바이트(4MB)까지 65536바이트(64KB)의 배수입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MediaDescription</maml:name><maml:description><maml:para>백업 세트가 들어 있는 미디어에 대해 선택적으로 입력할 수 있는 설명입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MediaName</maml:name><maml:description><maml:para>미디어 집합을 식별하는 데 사용하는 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MirrorDevices</maml:name><maml:description><maml:para>미러된 백업에 사용되는 백업 장치를 지정하는 BackupDeviceList 개체의 배열을 지정합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">BackupDeviceList[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoRecovery</maml:name><maml:description><maml:para>로그의 비상 로그를 백업하지 않습니다. 데이터베이스가 복원되면 복원 중인 상태로 유지됩니다. 설정되지 않은 경우는 비상 로그가 백업됩니다. BackupAction 매개 변수가 Log로 설정된 경우에만 적용됩니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoRewind</maml:name><maml:description><maml:para>백업이 완료될 때 끝 위치에서 테이프 드라이브를 열어 둡니다. 설정되지 않은 경우 작업이 완료된 후 테이프가 되감깁니다. 디스크 또는 URL 백업에는 적용되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>PassThru</maml:name><maml:description><maml:para>설정되지 않은 경우 백업을 수행한 Smo Backup 개체를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>백업 작업을 실행하려는 SQL Server의 인스턴스에 대한 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Restart</maml:name><maml:description><maml:para>부분적으로 완료된 백업 작업의 처리를 계속합니다. 설정되지 않은 경우(기본값) cmdlet은 중단된 백업 작업을 백업 세트의 처음부터 다시 시작합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RetainDays</maml:name><maml:description><maml:para>백업 세트를 덮어쓰지 않고 보존할 일 수를 가져오거나 설정합니다. 디스크 또는 테이프 장치에 저장된 백업 데이터에만 사용할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>SkipTapeHeader</maml:name><maml:description><maml:para>테이프 헤더 읽기를 건너뜁니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>SqlCredential</maml:name><maml:description><maml:para>SQL Server 자격 증명 개체는 인증 정보를 저장하며 이 개체는 Windows Azure Blob 저장소 서비스(URL)를 백업할 때 필요한 매개 변수입니다. 저장된 인증 정보에는 Windows Azure 저장소 계정 이름과 연결된 액세스 키 값이 포함됩니다. 이 매개 변수는 디스크 또는 테이프와 함께 사용되지 않습니다. SQL Server 자격 증명의 이름을 제공하거나 파이프라인을 통해 개체를 전달할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSObject</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>UndoFileName</maml:name><maml:description><maml:para>복구 중 롤백되며 커밋되지 않은 트랜잭션을 저장하는 데 사용되는 실행 취소 파일의 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>UnloadTapeAfter</maml:name><maml:description><maml:para>작업이 완료되면 테이프 장치가 되감기고 언로드됩니다. 설정되지 않은 경우 테이프 미디어를 되감고 언로드하지 않습니다. 디스크 또는 URL 백업에는 적용되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Backup-SqlDatabase</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>DatabaseObject</maml:name><maml:description><maml:para>데이터베이스 개체입니다. 이 데이터베이스에 백업 작업이 수행됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Database</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>BackupFile</maml:name><maml:description><maml:para>백업의 위치 및 파일 이름입니다. 선택적 매개 변수입니다. 지정되지 않은 경우, 백업은 전체 및 파일 백업의 경우 "databasename.bak" 이름으로 서버의 기본 백업 위치에 저장되며 로그 백업의 경우 "databasename.trn"으로 저장됩니다. 이 매개 변수는 BackupDevice 또는 BackupContainer 매개 변수와 함께 사용할 수 없습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupAction</maml:name><maml:description><maml:para>수행할 백업 작업의 유형입니다. 유효한 옵션은 다음과 같습니다. 다음과 같이 Database, Files 또는 Log가 있습니다.
</maml:para><maml:para>Database: 데이터베이스에 있는 모든 데이터 파일을 백업합니다.
</maml:para><maml:para>Files: 지정한 데이터 파일을 백업합니다. DatabaseFile 또는 DatabaseFileGroup 매개 변수를 설정해야 합니다.
</maml:para><maml:para>Log: 트랜잭션 로그를 백업합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupActionType</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupContainer</maml:name><maml:description><maml:para>백업이 저장되는 폴더 또는 위치입니다. 디스크의 폴더 또는 Windows Azure Blob 컨테이너의 URL일 수 있습니다. 이 매개 변수는 지정된 인스턴스에서 여러 데이터베이스를 백업할 때 유용합니다. 이 매개 변수는 BackupDevice 매개 변수와 함께 사용할 수 없습니다. BackupContainer 매개 변수는 BackupFile 매개 변수와 함께 사용할 수 없습니다.
</maml:para><maml:para>참고: 위치를 지정하는 데 사용된 경로는 슬래시(/)로 끝나야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupDevice</maml:name><maml:description><maml:para>백업이 저장될 장치입니다. 이 매개 변수는 BackupFile 매개 변수와 함께 사용할 수 없습니다. 테이프에 백업하는 경우 이 매개 변수를 사용합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">BackupDeviceItem[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupSetDescription</maml:name><maml:description><maml:para>백업 설정에 대해 선택적으로 입력할 수 있는 설명입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupSetName</maml:name><maml:description><maml:para>백업 세트의 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BlockSize</maml:name><maml:description><maml:para>백업의 물리적 블록 크기(바이트)입니다. 지원되는 크기는 512, 1024, 2048, 4096, 8192, 16384, 32768 및 65536(64KB) 바이트입니다. 테이프 장치의 기본값은 65536이고 그렇지 않은 경우에는 512입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BufferCount</maml:name><maml:description><maml:para>백업 작업에 사용되는 I/O 버퍼의 총 수입니다. 임의의 양의 정수를 지정할 수 있습니다. 많은 버퍼를 사용할 경우 Sqlservr.exe 프로세스에 가상 주소 공간이 충분하지 않아 "out of memory" 오류가 발생할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Checksum</maml:name><maml:description><maml:para>백업 작업 중 체크섬 값을 계산합니다. 설정되지 않은 경우는 체크섬이 계산되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>CompressionOption</maml:name><maml:description><maml:para>백업 작업의 압축 옵션은 Default, On 및 Off가 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupCompressionOptions</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ContinueAfterError</maml:name><maml:description><maml:para>체크섬 오류가 발생할 경우 작업이 계속됩니다. 설정되지 않은 경우 체크섬 오류 후 작업이 실패합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>CopyOnly</maml:name><maml:description><maml:para>백업이 복사 전용 백업입니다. 복사 전용 백업은 정기적으로 예약되어 수행되는 기존 백업의 정상 순서에 영향을 미치지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>DatabaseFile</maml:name><maml:description><maml:para>백업할 데이터베이스 파일이 하나 이상 있습니다. BackupAction 속성이 Files로 설정된 경우에만 사용됩니다. BackupAction 매개 변수가 Files로 설정된 경우 DatabaseFileGroups 속성 또는 DatabaseFiles 속성을 반드시 지정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>DatabaseFileGroup</maml:name><maml:description><maml:para>백업 작업의 대상인 데이터베이스 파일 그룹입니다. BackupAction 속성이 Files로 설정된 경우에만 사용됩니다. BackupAction 매개 변수가 Files로 설정된 경우 DatabaseFileGroups 속성 또는 DatabaseFiles 속성을 반드시 지정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>EncryptionOption</maml:name><maml:description><maml:para>백업 작업의 암호화 옵션입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupEncryptionOptions</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ExpirationDate</maml:name><maml:description><maml:para>백업 세트가 만료되고 백업 데이터가 더 이상 유효하지 않은 것으로 간주되는 날짜 및 시간입니다. 디스크 또는 테이프 장치에 저장된 백업 데이터에만 사용할 수 있습니다. 만료 날짜보다 오래된 백업 세트는 나중의 백업으로 덮어쓸 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">DateTime</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>FormatMedia</maml:name><maml:description><maml:para>백업 작업의 첫 번째 단계로 테이프를 포맷합니다. 디스크 백업에는 적용되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Incremental</maml:name><maml:description><maml:para>차등 백업을 수행합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Initialize</maml:name><maml:description><maml:para>백업 작업과 연결된 장치가 초기화됩니다. 미디어의 모든 기존 백업 세트를 덮어쓰고 이 백업은 해당 미디어의 첫 번째 백업 세트가 됩니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>LogTruncationType</maml:name><maml:description><maml:para>로그 백업의 잘림 동작입니다. TruncateOnly, NoTruncate 또는 Truncate 옵션이 있습니다. 기본적으로 이 옵션은 Truncate으로 설정되어 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupTruncateLogType</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MaxTransferSize</maml:name><maml:description><maml:para>백업 미디어와 SQL Server 인스턴스 간에 전송할 최대 바이트 수입니다. 가능한 값은 최대 4194304바이트(4MB)까지 65536바이트(64KB)의 배수입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MediaDescription</maml:name><maml:description><maml:para>백업 세트가 들어 있는 미디어에 대해 선택적으로 입력할 수 있는 설명입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MediaName</maml:name><maml:description><maml:para>미디어 집합을 식별하는 데 사용하는 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MirrorDevices</maml:name><maml:description><maml:para>미러된 백업에 사용되는 백업 장치를 지정하는 BackupDeviceList 개체의 배열을 지정합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">BackupDeviceList[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoRecovery</maml:name><maml:description><maml:para>로그의 비상 로그를 백업하지 않습니다. 데이터베이스가 복원되면 복원 중인 상태로 유지됩니다. 설정되지 않은 경우는 비상 로그가 백업됩니다. BackupAction 매개 변수가 Log로 설정된 경우에만 적용됩니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoRewind</maml:name><maml:description><maml:para>백업이 완료될 때 끝 위치에서 테이프 드라이브를 열어 둡니다. 설정되지 않은 경우 작업이 완료된 후 테이프가 되감깁니다. 디스크 또는 URL 백업에는 적용되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>PassThru</maml:name><maml:description><maml:para>설정되지 않은 경우 백업을 수행한 Smo Backup 개체를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Restart</maml:name><maml:description><maml:para>부분적으로 완료된 백업 작업의 처리를 계속합니다. 설정되지 않은 경우(기본값) cmdlet은 중단된 백업 작업을 백업 세트의 처음부터 다시 시작합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RetainDays</maml:name><maml:description><maml:para>백업 세트를 덮어쓰지 않고 보존할 일 수를 가져오거나 설정합니다. 디스크 또는 테이프 장치에 저장된 백업 데이터에만 사용할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>SkipTapeHeader</maml:name><maml:description><maml:para>테이프 헤더 읽기를 건너뜁니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>SqlCredential</maml:name><maml:description><maml:para>SQL Server 자격 증명 개체는 인증 정보를 저장하며 이 개체는 Windows Azure Blob 저장소 서비스(URL)를 백업할 때 필요한 매개 변수입니다. 저장된 인증 정보에는 Windows Azure 저장소 계정 이름과 연결된 액세스 키 값이 포함됩니다. 이 매개 변수는 디스크 또는 테이프와 함께 사용되지 않습니다. SQL Server 자격 증명의 이름을 제공하거나 파이프라인을 통해 개체를 전달할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSObject</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>UndoFileName</maml:name><maml:description><maml:para>복구 중 롤백되며 커밋되지 않은 트랜잭션을 저장하는 데 사용되는 실행 취소 파일의 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>UnloadTapeAfter</maml:name><maml:description><maml:para>작업이 완료되면 테이프 장치가 되감기고 언로드됩니다. 설정되지 않은 경우 테이프 미디어를 되감고 언로드하지 않습니다. 디스크 또는 URL 백업에는 적용되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Backup-SqlDatabase</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Database</maml:name><maml:description><maml:para>백업할 데이터베이스의 이름입니다. -Database는 -DatabaseObject 매개 변수와 함께 사용할 수 없습니다.
</maml:para><maml:para>-Database 매개 변수가 지정된 경우 -Path, -InputObject 또는 -ServerInstance 매개 변수도 지정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>BackupFile</maml:name><maml:description><maml:para>백업의 위치 및 파일 이름입니다. 선택적 매개 변수입니다. 지정되지 않은 경우, 백업은 전체 및 파일 백업의 경우 "databasename.bak" 이름으로 서버의 기본 백업 위치에 저장되며 로그 백업의 경우 "databasename.trn"으로 저장됩니다. 이 매개 변수는 BackupDevice 또는 BackupContainer 매개 변수와 함께 사용할 수 없습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupAction</maml:name><maml:description><maml:para>수행할 백업 작업의 유형입니다. 유효한 옵션은 다음과 같습니다. 다음과 같이 Database, Files 또는 Log가 있습니다.
</maml:para><maml:para>Database: 데이터베이스에 있는 모든 데이터 파일을 백업합니다.
</maml:para><maml:para>Files: 지정한 데이터 파일을 백업합니다. DatabaseFile 또는 DatabaseFileGroup 매개 변수를 설정해야 합니다.
</maml:para><maml:para>Log: 트랜잭션 로그를 백업합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupActionType</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupContainer</maml:name><maml:description><maml:para>백업이 저장되는 폴더 또는 위치입니다. 디스크의 폴더 또는 Windows Azure Blob 컨테이너의 URL일 수 있습니다. 이 매개 변수는 지정된 인스턴스에서 여러 데이터베이스를 백업할 때 유용합니다. 이 매개 변수는 BackupDevice 매개 변수와 함께 사용할 수 없습니다. BackupContainer 매개 변수는 BackupFile 매개 변수와 함께 사용할 수 없습니다.
</maml:para><maml:para>참고: 위치를 지정하는 데 사용된 경로는 슬래시(/)로 끝나야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupDevice</maml:name><maml:description><maml:para>백업이 저장될 장치입니다. 이 매개 변수는 BackupFile 매개 변수와 함께 사용할 수 없습니다. 테이프에 백업하는 경우 이 매개 변수를 사용합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">BackupDeviceItem[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupSetDescription</maml:name><maml:description><maml:para>백업 설정에 대해 선택적으로 입력할 수 있는 설명입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupSetName</maml:name><maml:description><maml:para>백업 세트의 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BlockSize</maml:name><maml:description><maml:para>백업의 물리적 블록 크기(바이트)입니다. 지원되는 크기는 512, 1024, 2048, 4096, 8192, 16384, 32768 및 65536(64KB) 바이트입니다. 테이프 장치의 기본값은 65536이고 그렇지 않은 경우에는 512입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BufferCount</maml:name><maml:description><maml:para>백업 작업에 사용되는 I/O 버퍼의 총 수입니다. 임의의 양의 정수를 지정할 수 있습니다. 많은 버퍼를 사용할 경우 Sqlservr.exe 프로세스에 가상 주소 공간이 충분하지 않아 "out of memory" 오류가 발생할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Checksum</maml:name><maml:description><maml:para>백업 작업 중 체크섬 값을 계산합니다. 설정되지 않은 경우는 체크섬이 계산되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>CompressionOption</maml:name><maml:description><maml:para>백업 작업의 압축 옵션은 Default, On 및 Off가 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupCompressionOptions</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ConnectionTimeout</maml:name><maml:description><maml:para>제한 시간이 초과하기 전까지 서버 연결을 대기하는 시간(초)입니다. 제한 시간 값은 0에서 65534 사이의 정수여야 합니다. 0을 지정하면 연결 시도 시간이 제한되지 않습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ContinueAfterError</maml:name><maml:description><maml:para>체크섬 오류가 발생할 경우 작업이 계속됩니다. 설정되지 않은 경우 체크섬 오류 후 작업이 실패합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>CopyOnly</maml:name><maml:description><maml:para>백업이 복사 전용 백업입니다. 복사 전용 백업은 정기적으로 예약되어 수행되는 기존 백업의 정상 순서에 영향을 미치지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Credential</maml:name><maml:description><maml:para>이 작업을 수행할 권한이 있는 SQL Server 로그인의 자격 증명을 지정하는 데 사용되는 PSCredential 개체입니다.
 
SQL Server 외부의 리소스에 액세스할 때 SQL Server에서 내부적으로 사용하는 인증 정보를 저장하는 데 사용되는 SQL 자격 증명 개체가 아닙니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>DatabaseFile</maml:name><maml:description><maml:para>백업할 데이터베이스 파일이 하나 이상 있습니다. BackupAction 속성이 Files로 설정된 경우에만 사용됩니다. BackupAction 매개 변수가 Files로 설정된 경우 DatabaseFileGroups 속성 또는 DatabaseFiles 속성을 반드시 지정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>DatabaseFileGroup</maml:name><maml:description><maml:para>백업 작업의 대상인 데이터베이스 파일 그룹입니다. BackupAction 속성이 Files로 설정된 경우에만 사용됩니다. BackupAction 매개 변수가 Files로 설정된 경우 DatabaseFileGroups 속성 또는 DatabaseFiles 속성을 반드시 지정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>EncryptionOption</maml:name><maml:description><maml:para>백업 작업의 암호화 옵션입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupEncryptionOptions</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ExpirationDate</maml:name><maml:description><maml:para>백업 세트가 만료되고 백업 데이터가 더 이상 유효하지 않은 것으로 간주되는 날짜 및 시간입니다. 디스크 또는 테이프 장치에 저장된 백업 데이터에만 사용할 수 있습니다. 만료 날짜보다 오래된 백업 세트는 나중의 백업으로 덮어쓸 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">DateTime</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>FormatMedia</maml:name><maml:description><maml:para>백업 작업의 첫 번째 단계로 테이프를 포맷합니다. 디스크 백업에는 적용되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Incremental</maml:name><maml:description><maml:para>차등 백업을 수행합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Initialize</maml:name><maml:description><maml:para>백업 작업과 연결된 장치가 초기화됩니다. 미디어의 모든 기존 백업 세트를 덮어쓰고 이 백업은 해당 미디어의 첫 번째 백업 세트가 됩니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>LogTruncationType</maml:name><maml:description><maml:para>로그 백업의 잘림 동작입니다. TruncateOnly, NoTruncate 또는 Truncate 옵션이 있습니다. 기본적으로 이 옵션은 Truncate으로 설정되어 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupTruncateLogType</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MaxTransferSize</maml:name><maml:description><maml:para>백업 미디어와 SQL Server 인스턴스 간에 전송할 최대 바이트 수입니다. 가능한 값은 최대 4194304바이트(4MB)까지 65536바이트(64KB)의 배수입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MediaDescription</maml:name><maml:description><maml:para>백업 세트가 들어 있는 미디어에 대해 선택적으로 입력할 수 있는 설명입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MediaName</maml:name><maml:description><maml:para>미디어 집합을 식별하는 데 사용하는 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MirrorDevices</maml:name><maml:description><maml:para>미러된 백업에 사용되는 백업 장치를 지정하는 BackupDeviceList 개체의 배열을 지정합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">BackupDeviceList[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoRecovery</maml:name><maml:description><maml:para>로그의 비상 로그를 백업하지 않습니다. 데이터베이스가 복원되면 복원 중인 상태로 유지됩니다. 설정되지 않은 경우는 비상 로그가 백업됩니다. BackupAction 매개 변수가 Log로 설정된 경우에만 적용됩니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoRewind</maml:name><maml:description><maml:para>백업이 완료될 때 끝 위치에서 테이프 드라이브를 열어 둡니다. 설정되지 않은 경우 작업이 완료된 후 테이프가 되감깁니다. 디스크 또는 URL 백업에는 적용되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>PassThru</maml:name><maml:description><maml:para>설정되지 않은 경우 백업을 수행한 Smo Backup 개체를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Restart</maml:name><maml:description><maml:para>부분적으로 완료된 백업 작업의 처리를 계속합니다. 설정되지 않은 경우(기본값) cmdlet은 중단된 백업 작업을 백업 세트의 처음부터 다시 시작합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RetainDays</maml:name><maml:description><maml:para>백업 세트를 덮어쓰지 않고 보존할 일 수를 가져오거나 설정합니다. 디스크 또는 테이프 장치에 저장된 백업 데이터에만 사용할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>SkipTapeHeader</maml:name><maml:description><maml:para>테이프 헤더 읽기를 건너뜁니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>SqlCredential</maml:name><maml:description><maml:para>SQL Server 자격 증명 개체는 인증 정보를 저장하며 이 개체는 Windows Azure Blob 저장소 서비스(URL)를 백업할 때 필요한 매개 변수입니다. 저장된 인증 정보에는 Windows Azure 저장소 계정 이름과 연결된 액세스 키 값이 포함됩니다. 이 매개 변수는 디스크 또는 테이프와 함께 사용되지 않습니다. SQL Server 자격 증명의 이름을 제공하거나 파이프라인을 통해 개체를 전달할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSObject</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>UndoFileName</maml:name><maml:description><maml:para>복구 중 롤백되며 커밋되지 않은 트랜잭션을 저장하는 데 사용되는 실행 취소 파일의 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>UnloadTapeAfter</maml:name><maml:description><maml:para>작업이 완료되면 테이프 장치가 되감기고 언로드됩니다. 설정되지 않은 경우 테이프 미디어를 되감고 언로드하지 않습니다. 디스크 또는 URL 백업에는 적용되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue, ByPropertyName)" position="named" aliases=""><maml:name>ServerInstance</maml:name><maml:description><maml:para>SQL Server 인스턴스의 이름입니다. 이 서버 인스턴스는 백업 작업의 대상이 됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Backup-SqlDatabase</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Database</maml:name><maml:description><maml:para>백업할 데이터베이스의 이름입니다. -Database는 -DatabaseObject 매개 변수와 함께 사용할 수 없습니다.
</maml:para><maml:para>-Database 매개 변수가 지정된 경우 -Path, -InputObject 또는 -ServerInstance 매개 변수도 지정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>BackupFile</maml:name><maml:description><maml:para>백업의 위치 및 파일 이름입니다. 선택적 매개 변수입니다. 지정되지 않은 경우, 백업은 전체 및 파일 백업의 경우 "databasename.bak" 이름으로 서버의 기본 백업 위치에 저장되며 로그 백업의 경우 "databasename.trn"으로 저장됩니다. 이 매개 변수는 BackupDevice 또는 BackupContainer 매개 변수와 함께 사용할 수 없습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupAction</maml:name><maml:description><maml:para>수행할 백업 작업의 유형입니다. 유효한 옵션은 다음과 같습니다. 다음과 같이 Database, Files 또는 Log가 있습니다.
</maml:para><maml:para>Database: 데이터베이스에 있는 모든 데이터 파일을 백업합니다.
</maml:para><maml:para>Files: 지정한 데이터 파일을 백업합니다. DatabaseFile 또는 DatabaseFileGroup 매개 변수를 설정해야 합니다.
</maml:para><maml:para>Log: 트랜잭션 로그를 백업합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupActionType</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupContainer</maml:name><maml:description><maml:para>백업이 저장되는 폴더 또는 위치입니다. 디스크의 폴더 또는 Windows Azure Blob 컨테이너의 URL일 수 있습니다. 이 매개 변수는 지정된 인스턴스에서 여러 데이터베이스를 백업할 때 유용합니다. 이 매개 변수는 BackupDevice 매개 변수와 함께 사용할 수 없습니다. BackupContainer 매개 변수는 BackupFile 매개 변수와 함께 사용할 수 없습니다.
</maml:para><maml:para>참고: 위치를 지정하는 데 사용된 경로는 슬래시(/)로 끝나야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupDevice</maml:name><maml:description><maml:para>백업이 저장될 장치입니다. 이 매개 변수는 BackupFile 매개 변수와 함께 사용할 수 없습니다. 테이프에 백업하는 경우 이 매개 변수를 사용합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">BackupDeviceItem[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupSetDescription</maml:name><maml:description><maml:para>백업 설정에 대해 선택적으로 입력할 수 있는 설명입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupSetName</maml:name><maml:description><maml:para>백업 세트의 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BlockSize</maml:name><maml:description><maml:para>백업의 물리적 블록 크기(바이트)입니다. 지원되는 크기는 512, 1024, 2048, 4096, 8192, 16384, 32768 및 65536(64KB) 바이트입니다. 테이프 장치의 기본값은 65536이고 그렇지 않은 경우에는 512입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BufferCount</maml:name><maml:description><maml:para>백업 작업에 사용되는 I/O 버퍼의 총 수입니다. 임의의 양의 정수를 지정할 수 있습니다. 많은 버퍼를 사용할 경우 Sqlservr.exe 프로세스에 가상 주소 공간이 충분하지 않아 "out of memory" 오류가 발생할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Checksum</maml:name><maml:description><maml:para>백업 작업 중 체크섬 값을 계산합니다. 설정되지 않은 경우는 체크섬이 계산되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>CompressionOption</maml:name><maml:description><maml:para>백업 작업의 압축 옵션은 Default, On 및 Off가 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupCompressionOptions</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ContinueAfterError</maml:name><maml:description><maml:para>체크섬 오류가 발생할 경우 작업이 계속됩니다. 설정되지 않은 경우 체크섬 오류 후 작업이 실패합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>CopyOnly</maml:name><maml:description><maml:para>백업이 복사 전용 백업입니다. 복사 전용 백업은 정기적으로 예약되어 수행되는 기존 백업의 정상 순서에 영향을 미치지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>DatabaseFile</maml:name><maml:description><maml:para>백업할 데이터베이스 파일이 하나 이상 있습니다. BackupAction 속성이 Files로 설정된 경우에만 사용됩니다. BackupAction 매개 변수가 Files로 설정된 경우 DatabaseFileGroups 속성 또는 DatabaseFiles 속성을 반드시 지정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>DatabaseFileGroup</maml:name><maml:description><maml:para>백업 작업의 대상인 데이터베이스 파일 그룹입니다. BackupAction 속성이 Files로 설정된 경우에만 사용됩니다. BackupAction 매개 변수가 Files로 설정된 경우 DatabaseFileGroups 속성 또는 DatabaseFiles 속성을 반드시 지정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>EncryptionOption</maml:name><maml:description><maml:para>백업 작업의 암호화 옵션입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupEncryptionOptions</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ExpirationDate</maml:name><maml:description><maml:para>백업 세트가 만료되고 백업 데이터가 더 이상 유효하지 않은 것으로 간주되는 날짜 및 시간입니다. 디스크 또는 테이프 장치에 저장된 백업 데이터에만 사용할 수 있습니다. 만료 날짜보다 오래된 백업 세트는 나중의 백업으로 덮어쓸 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">DateTime</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>FormatMedia</maml:name><maml:description><maml:para>백업 작업의 첫 번째 단계로 테이프를 포맷합니다. 디스크 백업에는 적용되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Incremental</maml:name><maml:description><maml:para>차등 백업을 수행합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Initialize</maml:name><maml:description><maml:para>백업 작업과 연결된 장치가 초기화됩니다. 미디어의 모든 기존 백업 세트를 덮어쓰고 이 백업은 해당 미디어의 첫 번째 백업 세트가 됩니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>LogTruncationType</maml:name><maml:description><maml:para>로그 백업의 잘림 동작입니다. TruncateOnly, NoTruncate 또는 Truncate 옵션이 있습니다. 기본적으로 이 옵션은 Truncate으로 설정되어 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupTruncateLogType</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MaxTransferSize</maml:name><maml:description><maml:para>백업 미디어와 SQL Server 인스턴스 간에 전송할 최대 바이트 수입니다. 가능한 값은 최대 4194304바이트(4MB)까지 65536바이트(64KB)의 배수입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MediaDescription</maml:name><maml:description><maml:para>백업 세트가 들어 있는 미디어에 대해 선택적으로 입력할 수 있는 설명입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MediaName</maml:name><maml:description><maml:para>미디어 집합을 식별하는 데 사용하는 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MirrorDevices</maml:name><maml:description><maml:para>미러된 백업에 사용되는 백업 장치를 지정하는 BackupDeviceList 개체의 배열을 지정합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">BackupDeviceList[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoRecovery</maml:name><maml:description><maml:para>로그의 비상 로그를 백업하지 않습니다. 데이터베이스가 복원되면 복원 중인 상태로 유지됩니다. 설정되지 않은 경우는 비상 로그가 백업됩니다. BackupAction 매개 변수가 Log로 설정된 경우에만 적용됩니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoRewind</maml:name><maml:description><maml:para>백업이 완료될 때 끝 위치에서 테이프 드라이브를 열어 둡니다. 설정되지 않은 경우 작업이 완료된 후 테이프가 되감깁니다. 디스크 또는 URL 백업에는 적용되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>PassThru</maml:name><maml:description><maml:para>설정되지 않은 경우 백업을 수행한 Smo Backup 개체를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Restart</maml:name><maml:description><maml:para>부분적으로 완료된 백업 작업의 처리를 계속합니다. 설정되지 않은 경우(기본값) cmdlet은 중단된 백업 작업을 백업 세트의 처음부터 다시 시작합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RetainDays</maml:name><maml:description><maml:para>백업 세트를 덮어쓰지 않고 보존할 일 수를 가져오거나 설정합니다. 디스크 또는 테이프 장치에 저장된 백업 데이터에만 사용할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>SkipTapeHeader</maml:name><maml:description><maml:para>테이프 헤더 읽기를 건너뜁니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>SqlCredential</maml:name><maml:description><maml:para>SQL Server 자격 증명 개체는 인증 정보를 저장하며 이 개체는 Windows Azure Blob 저장소 서비스(URL)를 백업할 때 필요한 매개 변수입니다. 저장된 인증 정보에는 Windows Azure 저장소 계정 이름과 연결된 액세스 키 값이 포함됩니다. 이 매개 변수는 디스크 또는 테이프와 함께 사용되지 않습니다. SQL Server 자격 증명의 이름을 제공하거나 파이프라인을 통해 개체를 전달할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSObject</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>UndoFileName</maml:name><maml:description><maml:para>복구 중 롤백되며 커밋되지 않은 트랜잭션을 저장하는 데 사용되는 실행 취소 파일의 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>UnloadTapeAfter</maml:name><maml:description><maml:para>작업이 완료되면 테이프 장치가 되감기고 언로드됩니다. 설정되지 않은 경우 테이프 미디어를 되감고 언로드하지 않습니다. 디스크 또는 URL 백업에는 적용되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="named" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>백업이 발생해야 할 위치의 Server 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">Server[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Backup-SqlDatabase</maml:name><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>BackupFile</maml:name><maml:description><maml:para>백업의 위치 및 파일 이름입니다. 선택적 매개 변수입니다. 지정되지 않은 경우, 백업은 전체 및 파일 백업의 경우 "databasename.bak" 이름으로 서버의 기본 백업 위치에 저장되며 로그 백업의 경우 "databasename.trn"으로 저장됩니다. 이 매개 변수는 BackupDevice 또는 BackupContainer 매개 변수와 함께 사용할 수 없습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupAction</maml:name><maml:description><maml:para>수행할 백업 작업의 유형입니다. 유효한 옵션은 다음과 같습니다. 다음과 같이 Database, Files 또는 Log가 있습니다.
</maml:para><maml:para>Database: 데이터베이스에 있는 모든 데이터 파일을 백업합니다.
</maml:para><maml:para>Files: 지정한 데이터 파일을 백업합니다. DatabaseFile 또는 DatabaseFileGroup 매개 변수를 설정해야 합니다.
</maml:para><maml:para>Log: 트랜잭션 로그를 백업합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupActionType</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupContainer</maml:name><maml:description><maml:para>백업이 저장되는 폴더 또는 위치입니다. 디스크의 폴더 또는 Windows Azure Blob 컨테이너의 URL일 수 있습니다. 이 매개 변수는 지정된 인스턴스에서 여러 데이터베이스를 백업할 때 유용합니다. 이 매개 변수는 BackupDevice 매개 변수와 함께 사용할 수 없습니다. BackupContainer 매개 변수는 BackupFile 매개 변수와 함께 사용할 수 없습니다.
</maml:para><maml:para>참고: 위치를 지정하는 데 사용된 경로는 슬래시(/)로 끝나야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupDevice</maml:name><maml:description><maml:para>백업이 저장될 장치입니다. 이 매개 변수는 BackupFile 매개 변수와 함께 사용할 수 없습니다. 테이프에 백업하는 경우 이 매개 변수를 사용합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">BackupDeviceItem[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupSetDescription</maml:name><maml:description><maml:para>백업 설정에 대해 선택적으로 입력할 수 있는 설명입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupSetName</maml:name><maml:description><maml:para>백업 세트의 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BlockSize</maml:name><maml:description><maml:para>백업의 물리적 블록 크기(바이트)입니다. 지원되는 크기는 512, 1024, 2048, 4096, 8192, 16384, 32768 및 65536(64KB) 바이트입니다. 테이프 장치의 기본값은 65536이고 그렇지 않은 경우에는 512입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BufferCount</maml:name><maml:description><maml:para>백업 작업에 사용되는 I/O 버퍼의 총 수입니다. 임의의 양의 정수를 지정할 수 있습니다. 많은 버퍼를 사용할 경우 Sqlservr.exe 프로세스에 가상 주소 공간이 충분하지 않아 "out of memory" 오류가 발생할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Checksum</maml:name><maml:description><maml:para>백업 작업 중 체크섬 값을 계산합니다. 설정되지 않은 경우는 체크섬이 계산되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>CompressionOption</maml:name><maml:description><maml:para>백업 작업의 압축 옵션은 Default, On 및 Off가 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupCompressionOptions</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ContinueAfterError</maml:name><maml:description><maml:para>체크섬 오류가 발생할 경우 작업이 계속됩니다. 설정되지 않은 경우 체크섬 오류 후 작업이 실패합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>CopyOnly</maml:name><maml:description><maml:para>백업이 복사 전용 백업입니다. 복사 전용 백업은 정기적으로 예약되어 수행되는 기존 백업의 정상 순서에 영향을 미치지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>DatabaseFile</maml:name><maml:description><maml:para>백업할 데이터베이스 파일이 하나 이상 있습니다. BackupAction 속성이 Files로 설정된 경우에만 사용됩니다. BackupAction 매개 변수가 Files로 설정된 경우 DatabaseFileGroups 속성 또는 DatabaseFiles 속성을 반드시 지정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>DatabaseFileGroup</maml:name><maml:description><maml:para>백업 작업의 대상인 데이터베이스 파일 그룹입니다. BackupAction 속성이 Files로 설정된 경우에만 사용됩니다. BackupAction 매개 변수가 Files로 설정된 경우 DatabaseFileGroups 속성 또는 DatabaseFiles 속성을 반드시 지정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>EncryptionOption</maml:name><maml:description><maml:para>백업 작업의 암호화 옵션입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupEncryptionOptions</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ExpirationDate</maml:name><maml:description><maml:para>백업 세트가 만료되고 백업 데이터가 더 이상 유효하지 않은 것으로 간주되는 날짜 및 시간입니다. 디스크 또는 테이프 장치에 저장된 백업 데이터에만 사용할 수 있습니다. 만료 날짜보다 오래된 백업 세트는 나중의 백업으로 덮어쓸 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">DateTime</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>FormatMedia</maml:name><maml:description><maml:para>백업 작업의 첫 번째 단계로 테이프를 포맷합니다. 디스크 백업에는 적용되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Incremental</maml:name><maml:description><maml:para>차등 백업을 수행합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Initialize</maml:name><maml:description><maml:para>백업 작업과 연결된 장치가 초기화됩니다. 미디어의 모든 기존 백업 세트를 덮어쓰고 이 백업은 해당 미디어의 첫 번째 백업 세트가 됩니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>LogTruncationType</maml:name><maml:description><maml:para>로그 백업의 잘림 동작입니다. TruncateOnly, NoTruncate 또는 Truncate 옵션이 있습니다. 기본적으로 이 옵션은 Truncate으로 설정되어 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupTruncateLogType</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MaxTransferSize</maml:name><maml:description><maml:para>백업 미디어와 SQL Server 인스턴스 간에 전송할 최대 바이트 수입니다. 가능한 값은 최대 4194304바이트(4MB)까지 65536바이트(64KB)의 배수입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MediaDescription</maml:name><maml:description><maml:para>백업 세트가 들어 있는 미디어에 대해 선택적으로 입력할 수 있는 설명입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MediaName</maml:name><maml:description><maml:para>미디어 집합을 식별하는 데 사용하는 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MirrorDevices</maml:name><maml:description><maml:para>미러된 백업에 사용되는 백업 장치를 지정하는 BackupDeviceList 개체의 배열을 지정합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">BackupDeviceList[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoRecovery</maml:name><maml:description><maml:para>로그의 비상 로그를 백업하지 않습니다. 데이터베이스가 복원되면 복원 중인 상태로 유지됩니다. 설정되지 않은 경우는 비상 로그가 백업됩니다. BackupAction 매개 변수가 Log로 설정된 경우에만 적용됩니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoRewind</maml:name><maml:description><maml:para>백업이 완료될 때 끝 위치에서 테이프 드라이브를 열어 둡니다. 설정되지 않은 경우 작업이 완료된 후 테이프가 되감깁니다. 디스크 또는 URL 백업에는 적용되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>PassThru</maml:name><maml:description><maml:para>설정되지 않은 경우 백업을 수행한 Smo Backup 개체를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Restart</maml:name><maml:description><maml:para>부분적으로 완료된 백업 작업의 처리를 계속합니다. 설정되지 않은 경우(기본값) cmdlet은 중단된 백업 작업을 백업 세트의 처음부터 다시 시작합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RetainDays</maml:name><maml:description><maml:para>백업 세트를 덮어쓰지 않고 보존할 일 수를 가져오거나 설정합니다. 디스크 또는 테이프 장치에 저장된 백업 데이터에만 사용할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>SkipTapeHeader</maml:name><maml:description><maml:para>테이프 헤더 읽기를 건너뜁니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>SqlCredential</maml:name><maml:description><maml:para>SQL Server 자격 증명 개체는 인증 정보를 저장하며 이 개체는 Windows Azure Blob 저장소 서비스(URL)를 백업할 때 필요한 매개 변수입니다. 저장된 인증 정보에는 Windows Azure 저장소 계정 이름과 연결된 액세스 키 값이 포함됩니다. 이 매개 변수는 디스크 또는 테이프와 함께 사용되지 않습니다. SQL Server 자격 증명의 이름을 제공하거나 파이프라인을 통해 개체를 전달할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSObject</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>UndoFileName</maml:name><maml:description><maml:para>복구 중 롤백되며 커밋되지 않은 트랜잭션을 저장하는 데 사용되는 실행 취소 파일의 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>UnloadTapeAfter</maml:name><maml:description><maml:para>작업이 완료되면 테이프 장치가 되감기고 언로드됩니다. 설정되지 않은 경우 테이프 미디어를 되감고 언로드하지 않습니다. 디스크 또는 URL 백업에는 적용되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupAction</maml:name><maml:description><maml:para>수행할 백업 작업의 유형입니다. 유효한 옵션은 다음과 같습니다. 다음과 같이 Database, Files 또는 Log가 있습니다.
</maml:para><maml:para>Database: 데이터베이스에 있는 모든 데이터 파일을 백업합니다.
</maml:para><maml:para>Files: 지정한 데이터 파일을 백업합니다. DatabaseFile 또는 DatabaseFileGroup 매개 변수를 설정해야 합니다.
</maml:para><maml:para>Log: 트랜잭션 로그를 백업합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupActionType</command:parameterValue><dev:type><maml:name>BackupActionType</maml:name><maml:uri /></dev:type><dev:defaultValue>Microsoft.SqlServer.Management.Smo.BackupActionType.Database</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupContainer</maml:name><maml:description><maml:para>백업이 저장되는 폴더 또는 위치입니다. 디스크의 폴더 또는 Windows Azure Blob 컨테이너의 URL일 수 있습니다. 이 매개 변수는 지정된 인스턴스에서 여러 데이터베이스를 백업할 때 유용합니다. 이 매개 변수는 BackupDevice 매개 변수와 함께 사용할 수 없습니다. BackupContainer 매개 변수는 BackupFile 매개 변수와 함께 사용할 수 없습니다.
</maml:para><maml:para>참고: 위치를 지정하는 데 사용된 경로는 슬래시(/)로 끝나야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupDevice</maml:name><maml:description><maml:para>백업이 저장될 장치입니다. 이 매개 변수는 BackupFile 매개 변수와 함께 사용할 수 없습니다. 테이프에 백업하는 경우 이 매개 변수를 사용합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">BackupDeviceItem[]</command:parameterValue><dev:type><maml:name>BackupDeviceItem[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>BackupFile</maml:name><maml:description><maml:para>백업의 위치 및 파일 이름입니다. 선택적 매개 변수입니다. 지정되지 않은 경우, 백업은 전체 및 파일 백업의 경우 "databasename.bak" 이름으로 서버의 기본 백업 위치에 저장되며 로그 백업의 경우 "databasename.trn"으로 저장됩니다. 이 매개 변수는 BackupDevice 또는 BackupContainer 매개 변수와 함께 사용할 수 없습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupSetDescription</maml:name><maml:description><maml:para>백업 설정에 대해 선택적으로 입력할 수 있는 설명입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupSetName</maml:name><maml:description><maml:para>백업 세트의 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BlockSize</maml:name><maml:description><maml:para>백업의 물리적 블록 크기(바이트)입니다. 지원되는 크기는 512, 1024, 2048, 4096, 8192, 16384, 32768 및 65536(64KB) 바이트입니다. 테이프 장치의 기본값은 65536이고 그렇지 않은 경우에는 512입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BufferCount</maml:name><maml:description><maml:para>백업 작업에 사용되는 I/O 버퍼의 총 수입니다. 임의의 양의 정수를 지정할 수 있습니다. 많은 버퍼를 사용할 경우 Sqlservr.exe 프로세스에 가상 주소 공간이 충분하지 않아 "out of memory" 오류가 발생할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Checksum</maml:name><maml:description><maml:para>백업 작업 중 체크섬 값을 계산합니다. 설정되지 않은 경우는 체크섬이 계산되지 않습니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>CompressionOption</maml:name><maml:description><maml:para>백업 작업의 압축 옵션은 Default, On 및 Off가 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupCompressionOptions</command:parameterValue><dev:type><maml:name>BackupCompressionOptions</maml:name><maml:uri /></dev:type><dev:defaultValue>Microsoft.SqlServer.Management.Smo.BackupCompressionOptions.Default</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ConnectionTimeout</maml:name><maml:description><maml:para>제한 시간이 초과하기 전까지 서버 연결을 대기하는 시간(초)입니다. 제한 시간 값은 0에서 65534 사이의 정수여야 합니다. 0을 지정하면 연결 시도 시간이 제한되지 않습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ContinueAfterError</maml:name><maml:description><maml:para>체크섬 오류가 발생할 경우 작업이 계속됩니다. 설정되지 않은 경우 체크섬 오류 후 작업이 실패합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>CopyOnly</maml:name><maml:description><maml:para>백업이 복사 전용 백업입니다. 복사 전용 백업은 정기적으로 예약되어 수행되는 기존 백업의 정상 순서에 영향을 미치지 않습니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Credential</maml:name><maml:description><maml:para>이 작업을 수행할 권한이 있는 SQL Server 로그인의 자격 증명을 지정하는 데 사용되는 PSCredential 개체입니다.
 
SQL Server 외부의 리소스에 액세스할 때 SQL Server에서 내부적으로 사용하는 인증 정보를 저장하는 데 사용되는 SQL 자격 증명 개체가 아닙니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue><dev:type><maml:name>PSCredential</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Database</maml:name><maml:description><maml:para>백업할 데이터베이스의 이름입니다. -Database는 -DatabaseObject 매개 변수와 함께 사용할 수 없습니다.
</maml:para><maml:para>-Database 매개 변수가 지정된 경우 -Path, -InputObject 또는 -ServerInstance 매개 변수도 지정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>DatabaseFile</maml:name><maml:description><maml:para>백업할 데이터베이스 파일이 하나 이상 있습니다. BackupAction 속성이 Files로 설정된 경우에만 사용됩니다. BackupAction 매개 변수가 Files로 설정된 경우 DatabaseFileGroups 속성 또는 DatabaseFiles 속성을 반드시 지정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>DatabaseFileGroup</maml:name><maml:description><maml:para>백업 작업의 대상인 데이터베이스 파일 그룹입니다. BackupAction 속성이 Files로 설정된 경우에만 사용됩니다. BackupAction 매개 변수가 Files로 설정된 경우 DatabaseFileGroups 속성 또는 DatabaseFiles 속성을 반드시 지정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>DatabaseObject</maml:name><maml:description><maml:para>데이터베이스 개체입니다. 이 데이터베이스에 백업 작업이 수행됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Database</command:parameterValue><dev:type><maml:name>Database</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>EncryptionOption</maml:name><maml:description><maml:para>백업 작업의 암호화 옵션입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupEncryptionOptions</command:parameterValue><dev:type><maml:name>BackupEncryptionOptions</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ExpirationDate</maml:name><maml:description><maml:para>백업 세트가 만료되고 백업 데이터가 더 이상 유효하지 않은 것으로 간주되는 날짜 및 시간입니다. 디스크 또는 테이프 장치에 저장된 백업 데이터에만 사용할 수 있습니다. 만료 날짜보다 오래된 백업 세트는 나중의 백업으로 덮어쓸 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">DateTime</command:parameterValue><dev:type><maml:name>DateTime</maml:name><maml:uri /></dev:type><dev:defaultValue>System.DateTime.MinValue</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>FormatMedia</maml:name><maml:description><maml:para>백업 작업의 첫 번째 단계로 테이프를 포맷합니다. 디스크 백업에는 적용되지 않습니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Incremental</maml:name><maml:description><maml:para>차등 백업을 수행합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Initialize</maml:name><maml:description><maml:para>백업 작업과 연결된 장치가 초기화됩니다. 미디어의 모든 기존 백업 세트를 덮어쓰고 이 백업은 해당 미디어의 첫 번째 백업 세트가 됩니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="named" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>백업이 발생해야 할 위치의 Server 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">Server[]</command:parameterValue><dev:type><maml:name>Server[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>LogTruncationType</maml:name><maml:description><maml:para>로그 백업의 잘림 동작입니다. TruncateOnly, NoTruncate 또는 Truncate 옵션이 있습니다. 기본적으로 이 옵션은 Truncate으로 설정되어 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupTruncateLogType</command:parameterValue><dev:type><maml:name>BackupTruncateLogType</maml:name><maml:uri /></dev:type><dev:defaultValue>Microsoft.SqlServer.Management.Smo.BackupTruncateLogType.Truncate</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MaxTransferSize</maml:name><maml:description><maml:para>백업 미디어와 SQL Server 인스턴스 간에 전송할 최대 바이트 수입니다. 가능한 값은 최대 4194304바이트(4MB)까지 65536바이트(64KB)의 배수입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MediaDescription</maml:name><maml:description><maml:para>백업 세트가 들어 있는 미디어에 대해 선택적으로 입력할 수 있는 설명입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MediaName</maml:name><maml:description><maml:para>미디어 집합을 식별하는 데 사용하는 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MirrorDevices</maml:name><maml:description><maml:para>미러된 백업에 사용되는 백업 장치를 지정하는 BackupDeviceList 개체의 배열을 지정합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">BackupDeviceList[]</command:parameterValue><dev:type><maml:name>BackupDeviceList[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoRecovery</maml:name><maml:description><maml:para>로그의 비상 로그를 백업하지 않습니다. 데이터베이스가 복원되면 복원 중인 상태로 유지됩니다. 설정되지 않은 경우는 비상 로그가 백업됩니다. BackupAction 매개 변수가 Log로 설정된 경우에만 적용됩니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoRewind</maml:name><maml:description><maml:para>백업이 완료될 때 끝 위치에서 테이프 드라이브를 열어 둡니다. 설정되지 않은 경우 작업이 완료된 후 테이프가 되감깁니다. 디스크 또는 URL 백업에는 적용되지 않습니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>PassThru</maml:name><maml:description><maml:para>설정되지 않은 경우 백업을 수행한 Smo Backup 개체를 출력합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>백업 작업을 실행하려는 SQL Server의 인스턴스에 대한 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Restart</maml:name><maml:description><maml:para>부분적으로 완료된 백업 작업의 처리를 계속합니다. 설정되지 않은 경우(기본값) cmdlet은 중단된 백업 작업을 백업 세트의 처음부터 다시 시작합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RetainDays</maml:name><maml:description><maml:para>백업 세트를 덮어쓰지 않고 보존할 일 수를 가져오거나 설정합니다. 디스크 또는 테이프 장치에 저장된 백업 데이터에만 사용할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue>-1</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue, ByPropertyName)" position="named" aliases=""><maml:name>ServerInstance</maml:name><maml:description><maml:para>SQL Server 인스턴스의 이름입니다. 이 서버 인스턴스는 백업 작업의 대상이 됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>SkipTapeHeader</maml:name><maml:description><maml:para>테이프 헤더 읽기를 건너뜁니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>SqlCredential</maml:name><maml:description><maml:para>SQL Server 자격 증명 개체는 인증 정보를 저장하며 이 개체는 Windows Azure Blob 저장소 서비스(URL)를 백업할 때 필요한 매개 변수입니다. 저장된 인증 정보에는 Windows Azure 저장소 계정 이름과 연결된 액세스 키 값이 포함됩니다. 이 매개 변수는 디스크 또는 테이프와 함께 사용되지 않습니다. SQL Server 자격 증명의 이름을 제공하거나 파이프라인을 통해 개체를 전달할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSObject</command:parameterValue><dev:type><maml:name>PSObject</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>UndoFileName</maml:name><maml:description><maml:para>복구 중 롤백되며 커밋되지 않은 트랜잭션을 저장하는 데 사용되는 실행 취소 파일의 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>UnloadTapeAfter</maml:name><maml:description><maml:para>작업이 완료되면 테이프 장치가 되감기고 언로드됩니다. 설정되지 않은 경우 테이프 미디어를 되감고 언로드하지 않습니다. 디스크 또는 URL 백업에는 적용되지 않습니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>SMO.Server</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>
 
백업 작업이 발생해야 하는 SQL Server 인스턴스를 가리키는 SMO.Server 개체입니다.
 
 
</maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>
-------------------------- EXAMPLE 1 --------------------------
                       </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Backup-SqlDatabase -ServerInstance Computer\Instance -Database MyDB
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 서버 인스턴스 'Computer\Instance'의 기본 백업 위치에 'MyDB' 데이터베이스의 완전한 데이터베이스 백업을 만듭니다. 백업 파일의 이름은 'MyDB.bak'으로 지정됩니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
-------------------------- EXAMPLE 2 --------------------------
                       </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;cd SQLSERVER:\SQL\Computer\Instance
Backup-SqlDatabase -Database MyDB
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 서버 인스턴스 'Computer\Instance'의 기본 백업 위치에 'MyDB' 데이터베이스의 완전한 데이터베이스 백업을 만듭니다. 백업이 발생해야 하는 서버 인스턴스를 확인하기 위해 현재 작업 디렉터리가 사용됩니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
-------------------------- EXAMPLE 3 --------------------------
                       </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Backup-SqlDatabase -ServerInstance Computer\Instance -Database MyDB -BackupAction Log
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 서버 인스턴스 'Computer\Instance'의 기본 백업 위치에 'MyDB' 데이터베이스의 트랜잭션 로그 백업을 만듭니다. 백업 파일의 이름은 'MyDB.trn'으로 지정됩니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
-------------------------- EXAMPLE 4 --------------------------
                       </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Backup-SqlDatabase -ServerInstance Computer\Instance -Database MyDB -Credential (Get-Credential sa)
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 sa SQL Server 로그인을 사용하여 'MyDB' 데이터베이스의 완전한 데이터베이스 백업을 만듭니다. 이 명령은 SQL Server 인증을 완료하기 위해 암호를 묻습니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
-------------------------- EXAMPLE 5 --------------------------
                       </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Backup-SqlDatabase -ServerInstance Computer\Instance -Database MyDB -BackupFile \\share\folder\MyDB.bak
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 '\\share\folder\MyDB.bak' 파일에 'MyDB' 데이터베이스의 완전한 데이터베이스 백업을 만듭니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
-------------------------- EXAMPLE 6 --------------------------
                       </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Get-ChildItem SQLSERVER:\SQL\Computer\Instance\Databases | Backup-SqlDatabase
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 기본 백업 위치에 서버 인스턴스 'Computer\Instance'의 모든 데이터베이스를 백업합니다. 백업 파일의 이름은 '&lt;database name&gt;.bak'으로 지정됩니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
-------------------------- EXAMPLE 7 --------------------------
                       </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;cd SQLSERVER:\SQL\Computer\Instance\Databases
foreach($database in (Get-ChildItem))
{
$dbName = $database.Name
Backup-SqlDatabase -Database $dbName -BackupFile "\\share\folder\$dbName.bak"
}
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 스크립트는 공유 '\\share\folder'에 서버 인스턴스 'Computer\Instance'의 각 데이터베이스의 전체 백업을 만듭니다. 백업 파일의 이름은 '&lt;database name&gt;.bak'으로 지정됩니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
-------------------------- EXAMPLE 8 --------------------------
                       </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Backup-SqlDatabase -ServerInstance Computer\Instance -Database MyDB -BackupAction Files -DatabaseFileGroup "FileGroup1","FileGroup2"
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 두 보조 파일 그룹 'FileGroup1' 및 'FileGroup2'에 있는 모든 파일의 전체 파일 백업을 만듭니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
-------------------------- EXAMPLE 9 --------------------------
                       </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Backup-SqlDatabase -ServerInstance Computer\Instance -Database MyDB -Incremental
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 서버 인스턴스 'Computer\Instance'의 기본 백업 위치에 'MyDB' 데이터베이스의 차등 데이터베이스 백업을 만듭니다. 백업 파일의 이름은 'MyDB.bak'으로 지정됩니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
-------------------------- EXAMPLE 10 --------------------------
                       </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;$tapeDevice = New-Object Microsoft.Sqlserver.Management.Smo.BackupDeviceItem("\\.\tape0", "Tape")
Backup-SqlDatabase -ServerInstance Computer\Instance -Database MyDB -BackupDevice $tapeDevice
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 테이프 장치 '\\.\tape0'에 'MyDB' 데이터베이스의 전체 데이터베이스 백업을 만듭니다. 이 명령은 이 장치를 나타내기 위해 Microsoft.Sqlserver.Management.Smo.BackupDeviceItem 인스턴스를 생성합니다. 생성자에는 두 개의 인수, 즉, 백업 장치의 이름('\\.\tape0')과 백업 장치의 유형('Tape')이 있습니다. 이 BackupDeviceItem 개체는 Backup-SqlDatabase cmdlet의 -BackupDevice 매개 변수로 전달됩니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
-------------------------- EXAMPLE 11 --------------------------
                       </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Backup-SqlDatabase –ServerInstance Computer\Instance –Database –MyDB -BackupContainer "https://storageaccountname.blob.core.windows.net/containername" -SqlCredential "SQLCredentialName"
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 Windows Azure Blob 저장소 서비스에 'MyDB' 데이터베이스의 전체 데이터베이스 백업을 만듭니다. BackupContainer를 사용하여 Windows Azure Blob 컨테이너의 위치(URL)를 지정하며 백업 파일 이름이 자동으로 생성됩니다. SqlCredential 매개 변수는 인증 정보를 저장하는 SQL Server 자격 증명의 이름을 지정하는 데 사용됩니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
-------------------------- EXAMPLE 12 --------------------------
                       </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Backup-SqlDatabase –ServerInstance Computer\Instance –Database –MyDB -BackupFile "https://storageaccountname.blob.core.windows.net/containername/MyDB.bak" -SqlCredential "SQLCredentialName"
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 Windows Azure Blob 저장소 서비스에 'MyDB' 데이터베이스의 전체 데이터베이스 백업을 만듭니다. BackupFile 매개 변수를 사용하여 위치(URL)와 백업 파일 이름을 지정합니다. SqlCredential 매개 변수는 SQL Server 자격 증명의 이름을 지정하는 데 사용됩니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
-------------------------- EXAMPLE 13 --------------------------
                       </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Get-ChildItem SQLSERVER:\SQL\Computer\Instance\Databases | Backup-SqlDatabase –BackupContainer "https://storageaccountname.blob.core.windows.net/containername" -SqlCredential "SQLCredentialName"
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 BackupContainer 매개 변수를 사용하여 Windows Azure Blob 저장소 서비스 위치에 서버 인스턴스 'Computer\Instance'의 모든 데이터베이스를 백업합니다. 백업 파일 이름이 자동 생성됩니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
-------------------------- EXAMPLE 14 --------------------------
                       </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;$encryptionOption = New-SqlBackupEncryptionOption -Algorithm Aes256 -EncryptorType ServerCertificate -EncryptorName "BackupCert"
</dev:code><dev:code>C:\PS&gt;Backup-SqlDatabase -ServerInstance . -Database "db1" -BackupFile "db1.bak" -CompressionOption On -EncryptionOption $encryptionOption
 
</dev:code><dev:remarks><maml:para>이 예에서는 암호화 옵션을 만들고 Backup-SqlDatabase에서 매개 변수 값으로 사용하여 암호화된 백업을 만듭니다.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText></maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Disable-SqlAlwaysOn</command:name><maml:description><maml:para>Path, InputObject 또는 ServerInstance 매개 변수로 지정된 SQL Server 인스턴스에서 AlwaysOn 가용성 그룹 기능을 사용하지 않도록 설정합니다. </maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Disable</command:verb><command:noun>SqlAlwaysOn</command:noun><dev:version /></command:details><maml:description><maml:para>Disable-SqlAlwaysOn cmdlet은 SQL Server 인스턴스에서 AlwaysOn 가용성 그룹 기능을 사용하지 않도록 설정합니다. SQL Server 서비스가 실행되고 있을 때 AlwaysOn 가용성 그룹을 사용할 수 없도록 설정하면 데이터베이스 엔진 서비스를 다시 시작해야 변경이 완료됩니다. -Force 매개 변수를 지정하지 않으면 cmdlet이 서비스를 다시 시작할 것인지를 묻는 메시지를 표시합니다. 취소할 경우 아무 작업도 발생하지 않습니다.
</maml:para><maml:para>AlwaysOn 가용성 그룹이 이미 사용하지 않도록 설정되어 있으면 이 cmdlet이 아무 작업을 하지 않습니다.
</maml:para><maml:para>이 cmdlet은 원격 서비스에 대해 실행할 수 있습니다. 이 cmdlet을 실행하려면 관리자 권한이 있어야 합니다.
</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Disable-SqlAlwaysOn</maml:name><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>SQL Server 인스턴스의 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Credential</maml:name><maml:description><maml:para>지정된 SQL Server 인스턴스에서 AlwaysOn 설정을 변경할 권한이 있는 Windows 자격 증명입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Force</maml:name><maml:description><maml:para>사용자 확인 없이 cmdlet이 계속하도록 하려면 -Force를 지정합니다. 이 매개 변수는 스크립트 생성을 허용하도록 제공됩니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoServiceRestart</maml:name><maml:description><maml:para>사용자에게 SQL Server 서비스를 다시 시작할 것인지를 묻는 메시지가 표시되지 않습니다. 변경 사항이 적용되려면 SQL Server 서비스를 직접 다시 시작해야 합니다. 이 매개 변수를 설정하면 -Force가 무시됩니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Disable-SqlAlwaysOn</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>AlwaysOn 가용성 그룹 설정을 사용하지 않도록 설정해야 하는 SQL Server 인스턴스의 Server 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Server</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Credential</maml:name><maml:description><maml:para>지정된 SQL Server 인스턴스에서 AlwaysOn 설정을 변경할 권한이 있는 Windows 자격 증명입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Force</maml:name><maml:description><maml:para>사용자 확인 없이 cmdlet이 계속하도록 하려면 -Force를 지정합니다. 이 매개 변수는 스크립트 생성을 허용하도록 제공됩니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoServiceRestart</maml:name><maml:description><maml:para>사용자에게 SQL Server 서비스를 다시 시작할 것인지를 묻는 메시지가 표시되지 않습니다. 변경 사항이 적용되려면 SQL Server 서비스를 직접 다시 시작해야 합니다. 이 매개 변수를 설정하면 -Force가 무시됩니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Disable-SqlAlwaysOn</maml:name><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Credential</maml:name><maml:description><maml:para>지정된 SQL Server 인스턴스에서 AlwaysOn 설정을 변경할 권한이 있는 Windows 자격 증명입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Force</maml:name><maml:description><maml:para>사용자 확인 없이 cmdlet이 계속하도록 하려면 -Force를 지정합니다. 이 매개 변수는 스크립트 생성을 허용하도록 제공됩니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoServiceRestart</maml:name><maml:description><maml:para>사용자에게 SQL Server 서비스를 다시 시작할 것인지를 묻는 메시지가 표시되지 않습니다. 변경 사항이 적용되려면 SQL Server 서비스를 직접 다시 시작해야 합니다. 이 매개 변수를 설정하면 -Force가 무시됩니다.
</maml:para></maml:description></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ServerInstance</maml:name><maml:description><maml:para>AlwaysOn을 사용하지 않도록 설정할 SQL Server 인스턴스의 이름입니다. 형식은 MACHINENAME\INSTANCE여야 합니다. -Credential 매개 변수와 함께 사용하여 원격 서버에서 AlwaysOn 설정을 변경할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Credential</maml:name><maml:description><maml:para>지정된 SQL Server 인스턴스에서 AlwaysOn 설정을 변경할 권한이 있는 Windows 자격 증명입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue><dev:type><maml:name>PSCredential</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Force</maml:name><maml:description><maml:para>사용자 확인 없이 cmdlet이 계속하도록 하려면 -Force를 지정합니다. 이 매개 변수는 스크립트 생성을 허용하도록 제공됩니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>AlwaysOn 가용성 그룹 설정을 사용하지 않도록 설정해야 하는 SQL Server 인스턴스의 Server 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Server</command:parameterValue><dev:type><maml:name>Server</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoServiceRestart</maml:name><maml:description><maml:para>사용자에게 SQL Server 서비스를 다시 시작할 것인지를 묻는 메시지가 표시되지 않습니다. 변경 사항이 적용되려면 SQL Server 서비스를 직접 다시 시작해야 합니다. 이 매개 변수를 설정하면 -Force가 무시됩니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>False</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>SQL Server 인스턴스의 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ServerInstance</maml:name><maml:description><maml:para>AlwaysOn을 사용하지 않도록 설정할 SQL Server 인스턴스의 이름입니다. 형식은 MACHINENAME\INSTANCE여야 합니다. -Credential 매개 변수와 함께 사용하여 원격 서버에서 AlwaysOn 설정을 변경할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>SMO.Server</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>
 
AlwaysOn을 사용하지 않도록 설정해야 하는 SQL Server 인스턴스를 가리키는 SMO.Server 개체입니다.
 
 
</maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>False</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>
  
-------------------------- EXAMPLE 1 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Disable-SqlAlwaysOn -Path SQLSERVER:\Sql\Computer\Instance
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 지정된 경로에 있는 SQL Server 인스턴스에서 AlwaysOn 가용성 그룹을 사용하지 않도록 설정합니다. 이 명령을 사용할 경우 서버 인스턴스를 다시 시작해야 하며, 다시 시작을 확인하는 메시지가 표시됩니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
  
-------------------------- EXAMPLE 2 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Disable-SqlAlwaysOn -Path SQLSERVER:\Sql\Computer\Instance -Force
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 지정된 경로에 있는 SQL Server 인스턴스에서 AlwaysOn 가용성 그룹을 사용하지 않도록 설정합니다. -Force 옵션을 사용하면 확인하는 메시지를 표시하지 않고 서버 인스턴스가 다시 시작됩니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
  
-------------------------- EXAMPLE 3 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Disable-SqlAlwaysOn -ServerInstance Computer\Instance
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'Computer\Instance'라는 SQL Server 인스턴스에서 AlwaysOn 가용성 그룹을 사용하지 않도록 설정합니다. 이 명령을 사용할 경우 인스턴스를 다시 시작해야 하며, 다시 시작을 확인하는 메시지가 표시됩니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
  
-------------------------- EXAMPLE 4 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Disable-SqlAlwaysOn -ServerInstance Computer\Instance -Credential (Get-Credential DOMAIN\Username)
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 Windows 인증을 사용하여 'Computer\Instance'라는 SQL Server 인스턴스에서 AlwaysOn 가용성 그룹을 사용하지 않도록 설정합니다. 지정된 계정인 'DOMAIN\Username'에 대해 암호를 입력하라는 메시지가 표시됩니다. 이 변경 내용이 적용되려면 인스턴스를 다시 시작해야 하며, 이 경우에도 다시 시작을 확인하는 메시지가 표시됩니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
  
-------------------------- EXAMPLE 5 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Disable-SqlAlwaysOn -Path SQLSERVER:\Sql\Computer\Instance -NoServiceRestart
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 지정된 경로에 있는 SQL Server 인스턴스에서 AlwaysOn 가용성 그룹을 사용하지 않도록 설정하지만 인스턴스를 다시 시작하지 않습니다. 이 서버 인스턴스를 직접 다시 시작하기 전까지 변경 내용이 적용되지 않습니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText></maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Enable-SqlAlwaysOn</command:name><maml:description><maml:para>Path, InputObject 또는 ServerInstance 매개 변수로 지정된 SQL Server 인스턴스에서 AlwaysOn 가용성 그룹 기능을 사용하도록 설정합니다. </maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Enable</command:verb><command:noun>SqlAlwaysOn</command:noun><dev:version /></command:details><maml:description><maml:para>Enable-SqlAlwaysOn cmdlet은 SQL Server 인스턴스에서 AlwaysOn을 사용하도록 설정합니다. SQL Server 서비스가 실행되고 있을 때 AlwaysOn 가용성 그룹을 사용할 수 있도록 설정하면 데이터베이스 엔진 서비스를 다시 시작해야 변경이 완료됩니다. -Force 매개 변수를 지정하지 않으면 cmdlet이 서비스를 다시 시작할 것인지를 묻는 메시지를 표시합니다. 취소할 경우 아무 작업도 발생하지 않습니다.
</maml:para><maml:para>AlwaysOn 가용성 그룹이 이미 사용하도록 설정되어 있으면 이 cmdlet이 아무 작업을 하지 않습니다.
</maml:para><maml:para>이 cmdlet은 원격 서비스에 대해 실행할 수 있습니다. 이 cmdlet을 실행하려면 관리자 권한이 있어야 합니다.
</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Enable-SqlAlwaysOn</maml:name><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>SQL Server 인스턴스의 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Credential</maml:name><maml:description><maml:para>AlwaysOn을 사용하도록 설정할 SQL Server 인스턴스의 이름입니다. 형식은 MACHINENAME\INSTANCE여야 합니다. -Credential 매개 변수와 함께 사용하여 원격 서버에서 AlwaysOn 설정을 변경할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Force</maml:name><maml:description><maml:para>사용자 확인 없이 cmdlet이 계속하도록 하려면 -Force를 지정합니다. 이 매개 변수는 스크립트 생성을 허용하도록 제공됩니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoServiceRestart</maml:name><maml:description><maml:para>사용자에게 SQL Server 서비스를 다시 시작할 것인지를 묻는 메시지가 표시되지 않습니다. 변경 사항이 적용되려면 SQL Server 서비스를 직접 다시 시작해야 합니다. 이 매개 변수를 설정하면 -Force가 무시됩니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Enable-SqlAlwaysOn</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>AlwaysOn 가용성 그룹 설정을 사용하도록 설정해야 하는 SQL Server 인스턴스의 Server 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Server</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Credential</maml:name><maml:description><maml:para>AlwaysOn을 사용하도록 설정할 SQL Server 인스턴스의 이름입니다. 형식은 MACHINENAME\INSTANCE여야 합니다. -Credential 매개 변수와 함께 사용하여 원격 서버에서 AlwaysOn 설정을 변경할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Force</maml:name><maml:description><maml:para>사용자 확인 없이 cmdlet이 계속하도록 하려면 -Force를 지정합니다. 이 매개 변수는 스크립트 생성을 허용하도록 제공됩니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoServiceRestart</maml:name><maml:description><maml:para>사용자에게 SQL Server 서비스를 다시 시작할 것인지를 묻는 메시지가 표시되지 않습니다. 변경 사항이 적용되려면 SQL Server 서비스를 직접 다시 시작해야 합니다. 이 매개 변수를 설정하면 -Force가 무시됩니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Enable-SqlAlwaysOn</maml:name><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Credential</maml:name><maml:description><maml:para>AlwaysOn을 사용하도록 설정할 SQL Server 인스턴스의 이름입니다. 형식은 MACHINENAME\INSTANCE여야 합니다. -Credential 매개 변수와 함께 사용하여 원격 서버에서 AlwaysOn 설정을 변경할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Force</maml:name><maml:description><maml:para>사용자 확인 없이 cmdlet이 계속하도록 하려면 -Force를 지정합니다. 이 매개 변수는 스크립트 생성을 허용하도록 제공됩니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoServiceRestart</maml:name><maml:description><maml:para>사용자에게 SQL Server 서비스를 다시 시작할 것인지를 묻는 메시지가 표시되지 않습니다. 변경 사항이 적용되려면 SQL Server 서비스를 직접 다시 시작해야 합니다. 이 매개 변수를 설정하면 -Force가 무시됩니다.
</maml:para></maml:description></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ServerInstance</maml:name><maml:description><maml:para>AlwaysOn을 사용하도록 설정할 SQL Server 인스턴스의 이름입니다. 형식은 MACHINENAME\INSTANCE여야 합니다. -Credential 매개 변수와 함께 사용하여 원격 서버에서 AlwaysOn 설정을 변경할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Credential</maml:name><maml:description><maml:para>AlwaysOn을 사용하도록 설정할 SQL Server 인스턴스의 이름입니다. 형식은 MACHINENAME\INSTANCE여야 합니다. -Credential 매개 변수와 함께 사용하여 원격 서버에서 AlwaysOn 설정을 변경할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue><dev:type><maml:name>PSCredential</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Force</maml:name><maml:description><maml:para>사용자 확인 없이 cmdlet이 계속하도록 하려면 -Force를 지정합니다. 이 매개 변수는 스크립트 생성을 허용하도록 제공됩니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>AlwaysOn 가용성 그룹 설정을 사용하도록 설정해야 하는 SQL Server 인스턴스의 Server 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Server</command:parameterValue><dev:type><maml:name>Server</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoServiceRestart</maml:name><maml:description><maml:para>사용자에게 SQL Server 서비스를 다시 시작할 것인지를 묻는 메시지가 표시되지 않습니다. 변경 사항이 적용되려면 SQL Server 서비스를 직접 다시 시작해야 합니다. 이 매개 변수를 설정하면 -Force가 무시됩니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>False</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>SQL Server 인스턴스의 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ServerInstance</maml:name><maml:description><maml:para>AlwaysOn을 사용하도록 설정할 SQL Server 인스턴스의 이름입니다. 형식은 MACHINENAME\INSTANCE여야 합니다. -Credential 매개 변수와 함께 사용하여 원격 서버에서 AlwaysOn 설정을 변경할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>
 
AlwaysOn을 사용하도록 설정해야 하는 SQL Server 인스턴스를 가리키는 SMO.Server 개체입니다.
 
 
</maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>
  
-------------------------- EXAMPLE 1 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Enable-SqlAlwaysOn -Path SQLSERVER:\Sql\Computer\Instance
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 지정된 경로에 있는 SQL Server 인스턴스에서 AlwaysOn 가용성 그룹을 사용하도록 설정합니다. 이 변경 내용이 적용되려면 인스턴스를 다시 시작해야 하며, 다시 시작을 확인하는 메시지가 표시됩니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
  
-------------------------- EXAMPLE 2 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Enable-SqlAlwaysOn -Path SQLSERVER:\Sql\Computer\Instance -Force
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 지정된 경로에 있는 SQL Server 인스턴스에서 AlwaysOn 가용성 그룹을 사용하도록 설정합니다. -Force 옵션을 사용하면 확인하는 메시지를 표시하지 않고 서버 인스턴스가 다시 시작됩니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
  
-------------------------- EXAMPLE 3 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Enable-SqlAlwaysOn -ServerInstance Computer\Instance
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'Computer\Instance'라는 SQL Server 인스턴스에서 AlwaysOn 가용성 그룹을 사용하도록 설정합니다. 이 변경 내용이 적용되려면 인스턴스를 다시 시작해야 하며, 다시 시작을 확인하는 메시지가 표시됩니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
  
-------------------------- EXAMPLE 4 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Enable-SqlAlwaysOn -ServerInstance Computer\Instance -Credential (Get-Credential DOMAIN\Username)
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 Windows 인증을 사용하여 'Computer\Instance'라는 SQL Server 인스턴스에서 AlwaysOn 가용성 그룹을 사용하도록 설정합니다. 지정된 계정에 대해 암호를 입력하라는 메시지가 표시됩니다. 이 변경 내용이 적용되려면 인스턴스를 다시 시작해야 하며, 이 경우에도 다시 시작을 확인하는 메시지가 표시됩니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
  
-------------------------- EXAMPLE 5 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Enable-SqlAlwaysOn -Path SQLSERVER:\Sql\Computer\Instance -NoServiceRestart
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 지정된 경로에 있는 SQL Server 인스턴스에서 AlwaysOn 가용성 그룹을 사용하도록 설정하지만 인스턴스를 다시 시작하지 않습니다. 이 서버 인스턴스를 직접 다시 시작하기 전까지 변경 내용이 적용되지 않습니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText></maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Get-SqlCredential</command:name><maml:description><maml:para>SQL 자격 증명 개체를 반환합니다.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Get</command:verb><command:noun>SqlCredential</command:noun><dev:version /></command:details><maml:description><maml:para>Get-SqlCredential은 SQL 자격 증명 개체를 반환합니다.
</maml:para><maml:para>이 cmdlet은 SQL 자격 증명 이름을 반환하기 위해 다음 작업 모드를 지원합니다.
 
1. SQL 자격 증명 이름 및 인스턴스 경로 지정
 
2. SQL 자격 증명 이름 및 서버 개체 지정
</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Get-SqlCredential</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Name</maml:name><maml:description><maml:para>자격 증명의 이름
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>작업을 실행하려는 SQL Server의 인스턴스에 대한 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 현재 작업 위치를 사용합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Get-SqlCredential</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Name</maml:name><maml:description><maml:para>자격 증명의 이름
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="3" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>자격 증명이 있는 Server 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Context</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="3" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>자격 증명이 있는 Server 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Context</command:parameterValue><dev:type><maml:name>Context</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Name</maml:name><maml:description><maml:para>자격 증명의 이름
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>작업을 실행하려는 SQL Server의 인스턴스에 대한 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 현재 작업 위치를 사용합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>
 
-------------------------- EXAMPLE 1 --------------------------
 
 
                      </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Get-SqlCredential –Name "mycredential"
 
 
</dev:code><dev:remarks><maml:para>이 명령은 자격 증명 개체를 반환합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title></maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;
</dev:code><dev:remarks></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Get-SqlDatabase</command:name><maml:description><maml:para>대상 SQL Server 인스턴스에 있는 각 데이터베이스에 대한 SQL 데이터베이스 개체를 반환합니다.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Get</command:verb><command:noun>SqlDatabase</command:noun><dev:version /></command:details><maml:description><maml:para>대상 SQL Server 인스턴스에 있는 각 데이터베이스에 대한 SQL 데이터베이스 개체를 반환합니다. 데이터베이스의 이름이 제공된 경우 이 cmdlet은 이 특정 데이터베이스 개체만 반환합니다. </maml:para><maml:para>이 cmdlet은 SQL 데이터베이스 개체를 반환하기 위해 다음과 같은 작업 모드를 지원합니다.</maml:para><maml:para>1. 인스턴스 PowerShell 경로 지정</maml:para><maml:para>2. 서버 개체 지정</maml:para><maml:para>3. 대상 SQL Server 인스턴스의 ServerInstance 지정</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Get-SqlDatabase</maml:name><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Name</maml:name><maml:description><maml:para>검색할 데이터베이스의 이름입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>작업을 실행할 SQL Server 인스턴스의 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 생성합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Get-SqlDatabase</maml:name><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Name</maml:name><maml:description><maml:para>검색할 데이터베이스의 이름입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue, ByPropertyName)" position="3" aliases=""><maml:name>ServerInstance</maml:name><maml:description><maml:para>이 매개 변수는 작업의 대상이 되는 SQL Server 인스턴스의 이름을 지정합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ConnectionTimeout</maml:name><maml:description><maml:para>제한 시간이 초과하기 전까지 SQL Server 연결을 대기하는 시간(초)입니다. 제한 시간 값은 0에서 65534 사이의 정수여야 합니다. 0을 지정하면 연결 시도 시간이 제한되지 않습니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Credential</maml:name><maml:description><maml:para>대상 컴퓨터에서 Windows 관리자 자격 증명을 사용하여 사용자 계정을 지정합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 생성합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Get-SqlDatabase</maml:name><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Name</maml:name><maml:description><maml:para>검색할 데이터베이스의 이름입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="3" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>대상 인스턴스의 서버 개체입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Context</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 생성합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ConnectionTimeout</maml:name><maml:description><maml:para>제한 시간이 초과하기 전까지 SQL Server 연결을 대기하는 시간(초)입니다. 제한 시간 값은 0에서 65534 사이의 정수여야 합니다. 0을 지정하면 연결 시도 시간이 제한되지 않습니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Credential</maml:name><maml:description><maml:para>대상 컴퓨터에서 Windows 관리자 자격 증명을 사용하여 사용자 계정을 지정합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue><dev:type><maml:name>PSCredential</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="3" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>대상 인스턴스의 서버 개체입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Context</command:parameterValue><dev:type><maml:name>Context</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Name</maml:name><maml:description><maml:para>검색할 데이터베이스의 이름입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>작업을 실행할 SQL Server 인스턴스의 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 생성합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue, ByPropertyName)" position="3" aliases=""><maml:name>ServerInstance</maml:name><maml:description><maml:para>이 매개 변수는 작업의 대상이 되는 SQL Server 인스턴스의 이름을 지정합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title></maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;CD SQLSERVER:\SQL\Computer\Instance;
Get-SqlDatabase -Name "DbName" -Credential $sqlCredential;
 
</dev:code><dev:remarks><maml:para>이 명령은 'Computer\Instance’ 서버 인스턴스의 ‘DbName’ 데이터베이스에 대한 데이터베이스 개체를 반환합니다. 작업이 발생해야 하는 서버 인스턴스를 확인하기 위해 현재 작업 디렉터리가 사용됩니다.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title></maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>This command retrieves all instances of SQL Server on the machine ‘MachineName’ and returns all the databases that are present in the instances.
PS C:\&gt;Get-SqlInstance -Credential $credential -MachineName " MachineName" | Get-SqlDatabase -Credential $sqlCredential;
 
</dev:code><dev:remarks><maml:para></maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Online Version:</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Get-SqlInstance</command:name><maml:description><maml:para>대상 컴퓨터에 있는 각 SQL Server 인스턴스에 대한 SQL 인스턴스 개체를 반환합니다.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Get</command:verb><command:noun>SqlInstance</command:noun><dev:version /></command:details><maml:description><maml:para>대상 컴퓨터에 있는 각 SQL Server 인스턴스에 대한 SQL 인스턴스 개체를 반환합니다. SQL Server 인스턴스의 이름이 제공된 경우 이 cmdlet은 이 특정 SQL Server 인스턴스만 반환합니다.</maml:para><maml:para>SQL Server 클라우드 어댑터가 SQL Server 인스턴스를 호스팅하는 컴퓨터에서 실행되고 있어야 하며 액세스 가능해야 합니다.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Get-SqlInstance</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases=""><maml:name>Credential</maml:name><maml:description><maml:para>대상 컴퓨터에서 Windows 관리자 자격 증명을 사용하여 사용자 계정을 지정합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>MachineName</maml:name><maml:description><maml:para>대상 컴퓨터의 이름입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>Name</maml:name><maml:description><maml:para>대상 컴퓨터에서 특정 SQL Server 인스턴스를 검색하려는 경우 해당 SQL Server 인스턴스의 이름입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AcceptSelfSignedCertificate</maml:name><maml:description><maml:para>이 cmdlet이 사용자에게 확인 메시지를 표시하지 않고 대상 컴퓨터의 자체 서명된 SQL Server 클라우드 어댑터 인증서를 자동으로 적용하도록 합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ManagementPublicPort</maml:name><maml:description><maml:para>대상 컴퓨터의 공용 관리 포트입니다. 대상 컴퓨터의 포트가 직접 액세스 가능하지는 않지만 끝점을 통해 노출되는 경우, 즉 다른 포트에 연결해야 하는 경우에 이 매개 변수를 사용해야 합니다.</maml:para><maml:para>SQL Server 클라우드 어댑터는 이 포트에서 액세스 가능해야 합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RetryTimeout</maml:name><maml:description><maml:para>대상 서버에서 명령을 다시 시도하는 기간입니다. 이 제한 시간이 만료되면 다시 시도되지 않습니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AcceptSelfSignedCertificate</maml:name><maml:description><maml:para>이 cmdlet이 사용자에게 확인 메시지를 표시하지 않고 대상 컴퓨터의 자체 서명된 SQL Server 클라우드 어댑터 인증서를 자동으로 적용하도록 합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases=""><maml:name>Credential</maml:name><maml:description><maml:para>대상 컴퓨터에서 Windows 관리자 자격 증명을 사용하여 사용자 계정을 지정합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue><dev:type><maml:name>PSCredential</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>MachineName</maml:name><maml:description><maml:para>대상 컴퓨터의 이름입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ManagementPublicPort</maml:name><maml:description><maml:para>대상 컴퓨터의 공용 관리 포트입니다. 대상 컴퓨터의 포트가 직접 액세스 가능하지는 않지만 끝점을 통해 노출되는 경우, 즉 다른 포트에 연결해야 하는 경우에 이 매개 변수를 사용해야 합니다.</maml:para><maml:para>SQL Server 클라우드 어댑터는 이 포트에서 액세스 가능해야 합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>Name</maml:name><maml:description><maml:para>대상 컴퓨터에서 특정 SQL Server 인스턴스를 검색하려는 경우 해당 SQL Server 인스턴스의 이름입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RetryTimeout</maml:name><maml:description><maml:para>대상 서버에서 명령을 다시 시도하는 기간입니다. 이 제한 시간이 만료되면 다시 시도되지 않습니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title></maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-SqlInstance -Credential $credential -MachineName " MachineName" -Name "InstanceName" -AcceptSelfSignedCertificate;
 
</dev:code><dev:remarks><maml:para>이 명령은 ‘MachineName’ 컴퓨터에서 ‘InstanceName’ SQL Server 인스턴스를 검색합니다. 사용자에게 확인 메시지를 표시하지 않고 대상 컴퓨터의 자체 서명된 인증서가 자동으로 적용됩니다.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title></maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>This command retrieves all instances of SQL Server on the machine ‘MachineName’. The self-signed certificate of the target machine will be automatically accepted without prompting the user.
PS C:\&gt;Get-SqlInstance -Credential $credential -MachineName "MachineName" -AcceptSelfSignedCertificate;
 
</dev:code><dev:remarks><maml:para></maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Online Version:</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Get-SqlSmartAdmin</command:name><maml:description><maml:para>SQL 스마트 관리 개체와 해당 속성을 가져오거나 검색합니다. </maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Get</command:verb><command:noun>SqlSmartAdmin</command:noun><dev:version /></command:details><maml:description><maml:para>Get-SqlSmartAdmin cmdlet은 SQL 스마트 관리 개체를 가져옵니다. 스마트 관리 개체에는 Windows Azure 구성 설정에 대한 SQL Server 관리되는 백업이 포함되어 있습니다. 이 cmdlet은 개체를 반환하기 위해 다음과 같은 작업 모드를 지원합니다.
 
 1. -name 매개 변수를 사용하여 서버 인스턴스의 이름을 전달합니다. 기본 인스턴스의 경우 컴퓨터 이름만 지정하고, 명명된 인스턴스의 경우에는 ’computername\instancename’을 사용합니다.
 
 2. SQL Server 인스턴스의 경로를 -Path 매개 변수에 전달합니다.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Get-SqlSmartAdmin</maml:name><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>SQL Server 인스턴스의 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 현재 작업 위치로 설정됩니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Name</maml:name><maml:description><maml:para>‘Computer\Instance’ 형식으로 된 SQL Server 인스턴스의 이름입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="named" aliases=""><maml:name>ServerInstance</maml:name><maml:description><maml:para>SQL Server 인스턴스의 이름입니다. 기본 인스턴스의 경우에는 컴퓨터 이름 명명된 인스턴스의 경우 "ComputerName\InstanceName" 형식을 사용하십시오. 명명된 인스턴스의 경우에는 "ComputerName\InstanceName" 형식을 사용합니다. –name 매개 변수와 –ServerInstance 둘 다 인스턴스의 이름을 지정할 수 있지만 –ServerInstance는 Server 인스턴스 이름 또는 SqInstanceInfo 개체의 파이프라인 입력도 받아들입니다. SqlInstanceInfo 개체는 Get-SqlIstances cmdlet을 사용하여 검색할 수 있습니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSObject</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Get-SqlSmartAdmin</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="3" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>Server 개체의 인스턴스입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Context</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Name</maml:name><maml:description><maml:para>‘Computer\Instance’ 형식으로 된 SQL Server 인스턴스의 이름입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="named" aliases=""><maml:name>ServerInstance</maml:name><maml:description><maml:para>SQL Server 인스턴스의 이름입니다. 기본 인스턴스의 경우에는 컴퓨터 이름 명명된 인스턴스의 경우 "ComputerName\InstanceName" 형식을 사용하십시오. 명명된 인스턴스의 경우에는 "ComputerName\InstanceName" 형식을 사용합니다. –name 매개 변수와 –ServerInstance 둘 다 인스턴스의 이름을 지정할 수 있지만 –ServerInstance는 Server 인스턴스 이름 또는 SqInstanceInfo 개체의 파이프라인 입력도 받아들입니다. SqlInstanceInfo 개체는 Get-SqlIstances cmdlet을 사용하여 검색할 수 있습니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSObject</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Get-SqlSmartAdmin</maml:name><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Name</maml:name><maml:description><maml:para>‘Computer\Instance’ 형식으로 된 SQL Server 인스턴스의 이름입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="named" aliases=""><maml:name>ServerInstance</maml:name><maml:description><maml:para>SQL Server 인스턴스의 이름입니다. 기본 인스턴스의 경우에는 컴퓨터 이름 명명된 인스턴스의 경우 "ComputerName\InstanceName" 형식을 사용하십시오. 명명된 인스턴스의 경우에는 "ComputerName\InstanceName" 형식을 사용합니다. –name 매개 변수와 –ServerInstance 둘 다 인스턴스의 이름을 지정할 수 있지만 –ServerInstance는 Server 인스턴스 이름 또는 SqInstanceInfo 개체의 파이프라인 입력도 받아들입니다. SqlInstanceInfo 개체는 Get-SqlIstances cmdlet을 사용하여 검색할 수 있습니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSObject</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="3" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>Server 개체의 인스턴스입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Context</command:parameterValue><dev:type><maml:name>Context</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Name</maml:name><maml:description><maml:para>‘Computer\Instance’ 형식으로 된 SQL Server 인스턴스의 이름입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>SQL Server 인스턴스의 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 현재 작업 위치로 설정됩니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="named" aliases=""><maml:name>ServerInstance</maml:name><maml:description><maml:para>SQL Server 인스턴스의 이름입니다. 기본 인스턴스의 경우에는 컴퓨터 이름 명명된 인스턴스의 경우 "ComputerName\InstanceName" 형식을 사용하십시오. 명명된 인스턴스의 경우에는 "ComputerName\InstanceName" 형식을 사용합니다. –name 매개 변수와 –ServerInstance 둘 다 인스턴스의 이름을 지정할 수 있지만 –ServerInstance는 Server 인스턴스 이름 또는 SqInstanceInfo 개체의 파이프라인 입력도 받아들입니다. SqlInstanceInfo 개체는 Get-SqlIstances cmdlet을 사용하여 검색할 수 있습니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSObject</command:parameterValue><dev:type><maml:name>PSObject</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>
-------------------------- EXAMPLE 1 --------------------------
                       </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\ PS&gt; cd SQLSERVER:\SQL\Computer\MyInstance
 Get-SqlSmartAdmin
Following is a list of the properties returned by the above command :
BackupEnabled : Shows whether backup is enabled at the instance level.
BackupRetentionPeriodInDays: Displays the number of days for retaining backup files.
CredentialName: Name of the SQL Credential used to authenticate to the Windows Azure storage account.
MasterSwitch: Shows whether the master switch is turned on or off.
Parent: Name of the instance of SQL Server.
Urn: The path of the Smart Admin object.
Properties: list of all the properties including the above.
</dev:code><dev:remarks><maml:para>이 명령은 명명된 SQL Server 인스턴스인 ‘MyInstance’에 대한 스마트 관리 개체 속성을 검색합니다.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
-------------------------- EXAMPLE 2 --------------------------
                       </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-SqlSmartAdmin -name “computer\MyInstance”
</dev:code><dev:remarks><maml:para>이 명령은 -serverName 매개 변수를 사용하여 스마트 관리 개체 속성을 검색합니다.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Online Version:</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Invoke-PolicyEvaluation</command:name><maml:description><maml:para>대상 집합에 대해 하나 이상의 SQL Server 정책 기반 관리 정책을 평가하여 집합의 호환성 수준을 보고하거나 집합이 정책을 준수하도록 합니다.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Invoke</command:verb><command:noun>PolicyEvaluation</command:noun><dev:version /></command:details><maml:description><maml:para>SQL Server 개체 집합으로 명명된 대상 집합에 대해 하나 이상의 정책 기반 관리 정책을 평가합니다. 이러한 정책은 데이터베이스 이름 또는 데이터 정렬에 대한 사이트 표준 구성과 같이 SQL Server 개체와 관련된 다양한 속성에 허용되는 값을 지정합니다. Invoke-PolicyEvaluation이 검사 모드로 실행될 경우 대상 집합의 개체의 현재 속성이 정책 정의의 규칙을 준수하는지 여부를 보고합니다. 속성이 정책을 준수하지 않는 경우 대상 집합의 개체가 재구성되지 않습니다. 구성 모드에서는 Invoke-PolicyEvaluation이 정책 정의를 준수하지 않는 대상 집합의 모든 개체를 재구성합니다.
</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Invoke-PolicyEvaluation</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="1" aliases=""><maml:name>Policy</maml:name><maml:description><maml:para>평가할 정책을 하나 이상 지정합니다. 정책은 SQL Server 데이터베이스 엔진 인스턴스로 저장되거나 XML 파일로 내보낼 수 있습니다. 데이터베이스 엔진 인스턴스에 저장된 정책에 대해서는 SQLSERVER:\SQLPolicy 폴더에 기반한 경로를 사용하여 정책의 위치를 지정합니다. XML 파일로 저장되는 정책의 경우 파일 시스템 경로를 사용하여 정책의 위치를 지정합니다.
</maml:para><maml:para>-Policy는 평가할 하나 이상의 정책의 이름을 지정하는 문자열을 사용할 수 있습니다. 문자열에 파일 또는 정책 이름만 지정된 경우 Invoke-PolicyEvaluation은 현재 경로의 설정을 사용합니다. 데이터베이스 엔진 인스턴스에 저장된 정책에 대해서는 "Database Status" 또는 "SQLSERVER:\SQLPolicy\MyComputer\DEFAULT\Policies\Database Status"와 같은 정책 이름을 사용합니다. XML 파일로 내보낸 정책에 대해서는 "Database Status.xml" 또는 "C:\MyPolicyFolder\Database Status.xml"과 같은 파일 이름을 사용합니다.
</maml:para><maml:para>-Policy는 내보낸 XML 정책이 포함된 폴더에 대해 실행되는 Get-ChildItem cmdlet의 파이프된 출력과 같은 FileInfo 개체 집합을 사용할 수 있습니다. -Policy는 또한 내보낸 SQLSERVER:\SQLPolicy 경로에 대해 실행되는 Get-ChildItem의 파이프된 출력과 같은 Policy 개체 집합도 사용할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSObject</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AdHocPolicyEvaluationMode</maml:name><maml:description><maml:para>Invoke-PolicyEvaluation이 대상 집합(Check)의 호환성 상태를 보고만 할지 또는 대상 집합을 재구성하여 정책까지 준수하도록 할지를(Configure) 지정합니다.
</maml:para><maml:para>Check - 로그인 자격 증명을 사용하되 어떤 개체도 재구성하지 않고 대상 집합의 호환성 상태를 보고합니다.
</maml:para><maml:para>CheckSqlScriptAsProxy - ##MS_PolicyTSQLExecutionLogin## 프록시 계정 자격 증명을 사용하여 검사 보고를 실행합니다.
</maml:para><maml:para>Configure - 정책을 준수하지 않는 대상 집합 개체를 재구성하고 결과 상태를 보고합니다. Invoke-PolicyEvaluation은 설정할 수 있고 결정적인 속성만 다시 구성합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AdHocPolicyEvaluationMode</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>OutputXml</maml:name><maml:description><maml:para>Invoke-PolicyEvaluation cmdlet이 SML-IF(Service Modeling Language Interchange Format) 스키마를 사용하여 보고서를 XML 형식으로 만들도록 지정합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>TargetExpression</maml:name><maml:description><maml:para>대상 집합을 정의하는 개체의 목록을 반환하는 쿼리를 지정합니다. 쿼리는 '/' 문자로 구분되는 노드가 있는 문자열로 지정됩니다. 각 노드의 형식은 ObjectType[Filter]입니다. ObjectType은 SQL SMO(SQL Server 관리 개체) 개체 모델의 개체 중 하나이며, Filter는 해당 노드의 특정 개체를 필터링하는 식입니다. 노드는 SMO 개체의 계층을 따라야 합니다. 예를 들어 다음 쿼리 식은 AdventureWorks 예제 데이터베이스를 반환합니다. "Server[@Name='MyComputer']/Database[@Name='AdventureWorks']"
</maml:para><maml:para>-TargetExpression이 지정된 경우 -TargetObject를 지정하지 않습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>TargetServerName</maml:name><maml:description><maml:para>대상 집합이 포함된 데이터베이스 엔진 인스턴스를 지정합니다. Microsoft.SqlServer.Management.Sfc.Sdk.SQLStoreConnection 개체가 포함된 변수를 지정할 수 있습니다. 또한 System.Data.SqlClient.SQLConnection 클래스의 ConnectionString 속성에 사용된 형식을 준수하는 문자열을 지정할 수도 있습니다. 예를 들어 System.Data.SqlClient.SqlConnectionStringBuilder 클래스를 사용하여 만든 문자열을 지정할 수 있습니다. 기본적으로 Invoke-PolicyEvaluation은 Windows 인증을 사용하여 연결됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSObject</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Invoke-PolicyEvaluation</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="1" aliases=""><maml:name>Policy</maml:name><maml:description><maml:para>평가할 정책을 하나 이상 지정합니다. 정책은 SQL Server 데이터베이스 엔진 인스턴스로 저장되거나 XML 파일로 내보낼 수 있습니다. 데이터베이스 엔진 인스턴스에 저장된 정책에 대해서는 SQLSERVER:\SQLPolicy 폴더에 기반한 경로를 사용하여 정책의 위치를 지정합니다. XML 파일로 저장되는 정책의 경우 파일 시스템 경로를 사용하여 정책의 위치를 지정합니다.
</maml:para><maml:para>-Policy는 평가할 하나 이상의 정책의 이름을 지정하는 문자열을 사용할 수 있습니다. 문자열에 파일 또는 정책 이름만 지정된 경우 Invoke-PolicyEvaluation은 현재 경로의 설정을 사용합니다. 데이터베이스 엔진 인스턴스에 저장된 정책에 대해서는 "Database Status" 또는 "SQLSERVER:\SQLPolicy\MyComputer\DEFAULT\Policies\Database Status"와 같은 정책 이름을 사용합니다. XML 파일로 내보낸 정책에 대해서는 "Database Status.xml" 또는 "C:\MyPolicyFolder\Database Status.xml"과 같은 파일 이름을 사용합니다.
</maml:para><maml:para>-Policy는 내보낸 XML 정책이 포함된 폴더에 대해 실행되는 Get-ChildItem cmdlet의 파이프된 출력과 같은 FileInfo 개체 집합을 사용할 수 있습니다. -Policy는 또한 내보낸 SQLSERVER:\SQLPolicy 경로에 대해 실행되는 Get-ChildItem의 파이프된 출력과 같은 Policy 개체 집합도 사용할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSObject</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AdHocPolicyEvaluationMode</maml:name><maml:description><maml:para>Invoke-PolicyEvaluation이 대상 집합(Check)의 호환성 상태를 보고만 할지 또는 대상 집합을 재구성하여 정책까지 준수하도록 할지를(Configure) 지정합니다.
</maml:para><maml:para>Check - 로그인 자격 증명을 사용하되 어떤 개체도 재구성하지 않고 대상 집합의 호환성 상태를 보고합니다.
</maml:para><maml:para>CheckSqlScriptAsProxy - ##MS_PolicyTSQLExecutionLogin## 프록시 계정 자격 증명을 사용하여 검사 보고를 실행합니다.
</maml:para><maml:para>Configure - 정책을 준수하지 않는 대상 집합 개체를 재구성하고 결과 상태를 보고합니다. Invoke-PolicyEvaluation은 설정할 수 있고 결정적인 속성만 다시 구성합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AdHocPolicyEvaluationMode</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>OutputXml</maml:name><maml:description><maml:para>Invoke-PolicyEvaluation cmdlet이 SML-IF(Service Modeling Language Interchange Format) 스키마를 사용하여 보고서를 XML 형식으로 만들도록 지정합니다.
</maml:para></maml:description></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>TargetObjects</maml:name><maml:description><maml:para>정책을 평가하는 대상의 SQL Server 개체 집합을 정의하는 PSObjects 배열 또는 PSObject를 지정합니다. SQL Server Analysis Services 인스턴스에 연결하려면 -TargetObject에 대해 Microsoft.AnalysisServices.Server 개체를 지정합니다.
</maml:para><maml:para>-TargetObject가 지정된 경우 -TargetExpression을 지정하지 않습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">PSObject[]</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AdHocPolicyEvaluationMode</maml:name><maml:description><maml:para>Invoke-PolicyEvaluation이 대상 집합(Check)의 호환성 상태를 보고만 할지 또는 대상 집합을 재구성하여 정책까지 준수하도록 할지를(Configure) 지정합니다.
</maml:para><maml:para>Check - 로그인 자격 증명을 사용하되 어떤 개체도 재구성하지 않고 대상 집합의 호환성 상태를 보고합니다.
</maml:para><maml:para>CheckSqlScriptAsProxy - ##MS_PolicyTSQLExecutionLogin## 프록시 계정 자격 증명을 사용하여 검사 보고를 실행합니다.
</maml:para><maml:para>Configure - 정책을 준수하지 않는 대상 집합 개체를 재구성하고 결과 상태를 보고합니다. Invoke-PolicyEvaluation은 설정할 수 있고 결정적인 속성만 다시 구성합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AdHocPolicyEvaluationMode</command:parameterValue><dev:type><maml:name>AdHocPolicyEvaluationMode</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>OutputXml</maml:name><maml:description><maml:para>Invoke-PolicyEvaluation cmdlet이 SML-IF(Service Modeling Language Interchange Format) 스키마를 사용하여 보고서를 XML 형식으로 만들도록 지정합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="1" aliases=""><maml:name>Policy</maml:name><maml:description><maml:para>평가할 정책을 하나 이상 지정합니다. 정책은 SQL Server 데이터베이스 엔진 인스턴스로 저장되거나 XML 파일로 내보낼 수 있습니다. 데이터베이스 엔진 인스턴스에 저장된 정책에 대해서는 SQLSERVER:\SQLPolicy 폴더에 기반한 경로를 사용하여 정책의 위치를 지정합니다. XML 파일로 저장되는 정책의 경우 파일 시스템 경로를 사용하여 정책의 위치를 지정합니다.
</maml:para><maml:para>-Policy는 평가할 하나 이상의 정책의 이름을 지정하는 문자열을 사용할 수 있습니다. 문자열에 파일 또는 정책 이름만 지정된 경우 Invoke-PolicyEvaluation은 현재 경로의 설정을 사용합니다. 데이터베이스 엔진 인스턴스에 저장된 정책에 대해서는 "Database Status" 또는 "SQLSERVER:\SQLPolicy\MyComputer\DEFAULT\Policies\Database Status"와 같은 정책 이름을 사용합니다. XML 파일로 내보낸 정책에 대해서는 "Database Status.xml" 또는 "C:\MyPolicyFolder\Database Status.xml"과 같은 파일 이름을 사용합니다.
</maml:para><maml:para>-Policy는 내보낸 XML 정책이 포함된 폴더에 대해 실행되는 Get-ChildItem cmdlet의 파이프된 출력과 같은 FileInfo 개체 집합을 사용할 수 있습니다. -Policy는 또한 내보낸 SQLSERVER:\SQLPolicy 경로에 대해 실행되는 Get-ChildItem의 파이프된 출력과 같은 Policy 개체 집합도 사용할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSObject</command:parameterValue><dev:type><maml:name>PSObject</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>TargetExpression</maml:name><maml:description><maml:para>대상 집합을 정의하는 개체의 목록을 반환하는 쿼리를 지정합니다. 쿼리는 '/' 문자로 구분되는 노드가 있는 문자열로 지정됩니다. 각 노드의 형식은 ObjectType[Filter]입니다. ObjectType은 SQL SMO(SQL Server 관리 개체) 개체 모델의 개체 중 하나이며, Filter는 해당 노드의 특정 개체를 필터링하는 식입니다. 노드는 SMO 개체의 계층을 따라야 합니다. 예를 들어 다음 쿼리 식은 AdventureWorks 예제 데이터베이스를 반환합니다. "Server[@Name='MyComputer']/Database[@Name='AdventureWorks']"
</maml:para><maml:para>-TargetExpression이 지정된 경우 -TargetObject를 지정하지 않습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>TargetObjects</maml:name><maml:description><maml:para>정책을 평가하는 대상의 SQL Server 개체 집합을 정의하는 PSObjects 배열 또는 PSObject를 지정합니다. SQL Server Analysis Services 인스턴스에 연결하려면 -TargetObject에 대해 Microsoft.AnalysisServices.Server 개체를 지정합니다.
</maml:para><maml:para>-TargetObject가 지정된 경우 -TargetExpression을 지정하지 않습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">PSObject[]</command:parameterValue><dev:type><maml:name>PSObject[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>TargetServerName</maml:name><maml:description><maml:para>대상 집합이 포함된 데이터베이스 엔진 인스턴스를 지정합니다. Microsoft.SqlServer.Management.Sfc.Sdk.SQLStoreConnection 개체가 포함된 변수를 지정할 수 있습니다. 또한 System.Data.SqlClient.SQLConnection 클래스의 ConnectionString 속성에 사용된 형식을 준수하는 문자열을 지정할 수도 있습니다. 예를 들어 System.Data.SqlClient.SqlConnectionStringBuilder 클래스를 사용하여 만든 문자열을 지정할 수 있습니다. 기본적으로 Invoke-PolicyEvaluation은 Windows 인증을 사용하여 연결됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSObject</command:parameterValue><dev:type><maml:name>PSObject</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>
 
 
 
                -------------------------- EXAMPLE 1 --------------------------
 
 
 
            </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;sl "C:\Program Files (x86)\Microsoft SQL Server"
sl "%PRODUCTVERSION%\Tools\Policies\DatabaseEngine\1033"
Invoke-PolicyEvaluation -Policy "Trustworthy Database.xml" -TargetServer "MYCOMPUTER"
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>지정된 컴퓨터의 기본 인스턴스에 대한 정책을 평가합니다. XML 파일에서 정책을 읽고 Windows 인증을 사용하여 연결합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
 
 
 
                -------------------------- EXAMPLE 2 --------------------------
 
 
 
            </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;sl "C:\Program Files (x86)\Microsoft SQL Server"
sl "%PRODUCTVERSION%\Tools\Policies\DatabaseEngine\1033"
gci "Database Status.xml", "Trustworthy Database.xml" | Invoke-PolicyEvaluation -TargetServer "MYCOMPUTER"
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>Get-Childitem을 사용하여 폴더의 XML 파일에서 두 개의 정책을 읽은 다음 Invoke-PolicyEvaluation으로 파이프합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
 
 
 
                -------------------------- EXAMPLE 3 --------------------------
 
 
 
            </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;sl "C:\Program Files (x86)\Microsoft SQL Server"
sl "%PRODUCTVERSION%\Tools\Policies\DatabaseEngine\1033"
Invoke-PolicyEvaluation -Policy "Database Status.xml" -TargetServer "MYCOMPUTER" -OutputXML &gt; C:\MyReportFolder\MyReport.xml
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>SML-IF(Service Modeling Language Interchange Format) 스키마를 사용하여 정책 평가 출력의 형식을 지정한 다음 출력을 파일로 리디렉션합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
 
 
 
                -------------------------- EXAMPLE 4 --------------------------
 
 
 
            </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;sl SQLSERVER:\SQLPolicy\MYCOMPUTER\DEFAULT\Policies
gci | Where-Object { $_.PolicyCategory -eq "Microsoft Best Practices: Maintenance" } | Invoke-PolicyEvaluation -TargetServer "MYCOMPUTER"
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>현재 경로를 SQL Server 정책 저장소로 설정합니다. Get-ChildItem을 사용하여 모든 정책을 읽고 Where-Object를 사용하여 PolicyCategory 속성이 Microsoft Best Practices: Maintenance로 설정된 정책을 필터링합니다. 그런 다음 필터링된 정책 집합을 Invoke-PolicyEvaluation으로 파이프합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
 
 
 
                -------------------------- EXAMPLE 5 --------------------------
 
 
 
            </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;sl "C:\Program Files (x86)\Microsoft SQL Server"
sl "%PRODUCTVERSION%\Tools\Policies\DatabaseEngine\1033"
$conn = New-Object Microsoft.SqlServer.Management.Sdk.Sfc.SqlStoreConnection("server='MYCOMPUTER';Trusted_Connection=True")
Invoke-PolicyEvaluation -Policy "Database Status.xml" -TargetServer $conn
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>Sfc.SqlStoreConnection 개체를 사용하여 대상 서버를 지정하는 방법입니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
 
 
 
                -------------------------- EXAMPLE 6 --------------------------
 
 
 
            </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;sl "C:\Program Files (x86)\Microsoft SQL Server\%PRODUCTVERSION%"
sl "tools\Policies\analysisservices\1033"
[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.AnalysisServices")
$SSASsvr = new-object Microsoft.AnalysisServices.Server
$SSASsvr.Connect("Data Source=localhost")
Invoke-PolicyEvaluation 'Surface Area Configuration for Analysis Services Features.xml' -TargetObject $SSASsvr
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>SQL Server Analysis Services 어셈블리를 로드한 다음 로컬 컴퓨터의 기본 인스턴스로 연결하고 Analysis Services 노출 영역 구성 정책을 실행하는 방법입니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
 
 
 
                -------------------------- EXAMPLE 7 --------------------------
 
 
 
            </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;sl "C:\Program Files (x86)\Microsoft SQL Server"
sl "120\Tools\Policies\DatabaseEngine\1033"
Invoke-PolicyEvaluation "Database Status.xml" -TargetServer "MYCOMPUTER" -TargetExpression "Server[@Name='MYCOMPUTER']/Database[@Name='AdventureWorks2014']"
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>-TargetExpression 쿼리 식을 사용하여 Database Status 정책을 AdventureWorks2014 예제 데이터베이스에 대해 평가하도록 지정합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
 
 
 
                -------------------------- EXAMPLE 8 --------------------------
 
 
 
            </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;sl "C:\Program Files (x86)\Microsoft SQL Server\120\Tools\Policies\ReportingServices\1033"
[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SqlServer.Dmf.Adapters")
$SSRSsvr = new-object Microsoft.SqlServer.Management.Adapters.RSContainer('MyComputer')
Invoke-PolicyEvaluation -Policy "Surface Area Configuration for Reporting Services 2008 Features.xml" -TargetObject $SSRSsvr
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>SQL Server Reporting Services 어셈블리를 로드한 다음 로컬 컴퓨터의 기본 인스턴스로 연결하고 Reporting Services 노출 영역 구성 정책을 실행하는 방법입니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>SQL Server Books Online: Using the Invoke-PolicyEvaluation cmdlet</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Invoke-Sqlcmd</command:name><maml:description><maml:para>SQL Server sqlcmd 유틸리티에서 지원하는 명령과 언어((Transact-SQL 및 XQuery)의 문이 포함된 스크립트를 실행합니다.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Invoke</command:verb><command:noun>Sqlcmd</command:noun><dev:version /></command:details><maml:description><maml:para>SQL Server sqlcmd 유틸리티에서 지원하는 명령 및 언어가 포함된 스크립트를 실행합니다. 지원되는 언어는 데이터베이스 엔진에서 지원하는 Transact-SQL 및 XQuery 구문입니다. Invoke-Sqlcmd에서도 GO, QUIT과 같이 sqlcmd에서 지원하는 여러 명령을 사용할 수 있습니다. Invoke-Sqlcmd에서는 SQLCMDUSER 등의 sqlcmd 스크립팅 변수를 사용할 수 있습니다. Invoke-Sqlcmd는 기본적으로 sqlcmd 스크립팅 변수를 설정하지 않습니다.
</maml:para><maml:para>Invoke-Sqlcmd는 주로 대화형 스크립트 편집과 관련된 sqlcmd 명령을 지원하지 않습니다. 지원되지 않는 명령으로는 :!!, :connect, :error, :out, :ed, :list, :listvar, :reset, :perftrace 및 :serverlist가 있습니다.
</maml:para><maml:para>스크립트가 반환하는 첫 번째 결과 집합은 형식이 지정된 테이블로 표시됩니다. 결과 집합의 열 목록이 첫 번째 결과 집합의 열 목록과 다를 경우 첫 번째 다음의 결과 집합이 표시되지 않습니다. 첫 번째 집합 다음의 결과 집합에 같은 열 목록이 있을 경우, 첫 번째 결과 집합에서 반환한 행이 포함되어 있고 형식이 지정된 테이블에 해당 행이 추가됩니다.
</maml:para><maml:para>Invoke-Sqlcmd는 PowerShell -Verbose 매개 변수를 지정하지 않을 경우 PRINT 문의 출력과 같은 SQL Server 메시지 출력을 반환하지 않습니다.
</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Invoke-Sqlcmd</maml:name><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases=""><maml:name>Query</maml:name><maml:description><maml:para>실행할 쿼리를 하나 이상 지정합니다. Transact-SQL 또는 XQuery 문 또는 sqlcmd 명령의 쿼리가 허용됩니다. 세미콜론으로 구분한 복수 쿼리를 지정할 수 있습니다. sqlcmd GO 구분 기호를 지정하지 마십시오. 문자열에 포함된 큰따옴표를 모두 이스케이프합니다. MyTable같은 따옴표 붙은 식별자 대신 "MyTable"같은 대괄호로 묶인 식별자를 사용해 보십시오.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AbortOnError</maml:name><maml:description><maml:para>Invoke-Sqlcmd에서 오류가 발생한 경우 Invoke-Sqlcmd가 실행을 중지하고 오류 수준을 PowerShell ERRORLEVEL 변수로 반환하도록 지정합니다. 오류의 심각도가 10을 초과하는 경우 오류 수준 1이 반환되고 오류의 심각도가 10 이하인 경우는 오류 수준이 0입니다. -ErrorLevel도 지정된 경우는 오류 메시지의 심각도가 -ErrorLevel에 지정된 값과 같거나 높을 경우에만 Invoke-Sqlcmd에서 1을 반환합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ConnectionTimeout</maml:name><maml:description><maml:para>Invoke-Sqlcmd가 데이터베이스 엔진의 인스턴스에 성공적으로 연결하지 못할 경우 Invoke-Sqlcmd의 제한 시간(초)을 지정합니다. 제한 시간 값은 0에서 65534 사이의 정수여야 합니다. 0을 지정하면 연결 시도 시간이 제한되지 않습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Database</maml:name><maml:description><maml:para>데이터베이스 이름을 지정하는 문자열입니다. Invoke-Sqlcmd는 -ServerInstance에 지정된 인스턴스의 이 데이터베이스에 연결됩니다.
</maml:para><maml:para>-Database가 지정되지 않은 경우 사용되는 데이터베이스는 현재 경로에 SQLSERVER:\SQL 폴더 및 데이터베이스 이름이 모두 지정되었는지 여부에 따라 다릅니다. 경로에 SQL 폴더와 데이터베이스 이름이 모두 지정된 경우 Invoke-Sqlcmd는 경로에 지정된 데이터베이스에 연결됩니다. 경로가 SQL 폴더에 기초하지 않은 경우 또는 경로에 데이터베이스 이름이 없는 경우는 Invoke-Sqlcmd가 현재 로그인 ID의 기본 데이터베이스에 연결됩니다. -IgnoreProviderContext 스위치를 지정하면 Invoke-Sqlcmd가 현재 경로에 지정된 데이터베이스를 고려하지 않고 현재 로그인 ID의 기본 설정으로 정의된 데이터베이스에 연결됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>DedicatedAdministratorConnection</maml:name><maml:description><maml:para>관리자 전용 연결(DAC)을 사용하여 데이터베이스 엔진 인스턴스에 연결합니다. DAC는 시스템 관리자가 새 표준 연결이 허용되지 않는 문제 해결 인스턴스 등의 동작에 대해 사용합니다. 인스턴스는 DAC를 지원하도록 구성해야 합니다. DAC가 활성화되지 않은 경우 Invoke-Sqlcmd는 오류를 보고하고 실행을 중지합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>DisableCommands</maml:name><maml:description><maml:para>배치 파일로 실행할 때 보안을 손상시킬 수 있는 일부 sqlcmd 기능을 해제합니다. 그러면 PowerShell 변수가 Invoke-Sqlcmd 스크립트로 전달되지 않습니다. SQLCMDINI 스크립팅 변수에 지정된 시작 스크립트가 실행되지 않았습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>DisableVariables</maml:name><maml:description><maml:para>Invoke-Sqlcmd가 sqlcmd 스크립팅 변수를 무시하도록 지정합니다. 이는 $(variable_name) 등을 비롯한 변수와 형식이 같은 문자열이 포함되어 있을 수 있는 INSERT 문이 스크립트에 많이 포함된 경우에 유용합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>EncryptConnection</maml:name><maml:description><maml:para>Invoke-Sqlcmd가 ServerInstance에 지정된 데이터베이스 엔진 인스턴스에 연결하는 데 SSL(Secure Sockets Layer) 암호화를 사용할지 여부를 지정합니다. TRUE를 지정하는 경우 SSL 암호화가 사용됩니다. FALSE를 지정하는 경우 암호화가 사용되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ErrorLevel</maml:name><maml:description><maml:para>Invoke-Sqlcmd에서 심각도 수준이 지정된 값과 같거나 높은 오류 메시지만 표시하도록 지정합니다. -ErrorLevel이 지정되지 않았거나 0으로 설정된 경우 모든 오류 메시지가 표시됩니다. 데이터베이스 엔진의 오류 심각도는 1부터 24까지입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>HostName</maml:name><maml:description><maml:para>워크스테이션 이름을 지정합니다. 워크스테이션 이름은 sp_who 시스템 저장 프로시저에 의해 sys.processes 카탈로그 뷰의 hostname 열에 보고됩니다. HostName이 지정되지 않은 경우 기본값은 Invoke-Sqlcmd가 실행되고 있는 컴퓨터 이름입니다. HostName을 사용하여 다른 Invoke-Sqlcmd 세션을 식별할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>IgnoreProviderContext</maml:name><maml:description><maml:para>Invoke-Sqlcmd는 현재 SQLSERVER:\SQL 경로에 의해 구성된 데이터베이스 컨텍스트를 무시합니다. -Database 매개 변수가 지정되지 않은 경우 Invoke-Sqlcmd는 현재 로그인 ID 또는 Windows 계정의 기본 데이터베이스를 사용합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>IncludeSqlUserErrors</maml:name><maml:description><maml:para>Invoke-Sqlcmd를 보내 기본적으로 달리 무시되는 SQL 사용자 스크립트 오류를 반환합니다. 이 매개 변수를 지정하면 Invoke-Sqlcmd가 sqlcmd 유틸리티의 기본 동작과 일치합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>InputFile</maml:name><maml:description><maml:para>파일을 Invoke-Sqlcmd의 쿼리 입력으로 사용하도록 지정합니다. 이 파일은 Transact-SQL 문, XQuery 문 및 sqlcmd 명령과 스크립팅 변수를 포함할 수 있습니다. 파일의 전체 경로를 지정합니다. 파일 경로 또는 파일 이름에는 공백을 사용할 수 없습니다.
</maml:para><maml:para>신뢰할 수 있는 출처의 스크립트만 실행합니다. 모든 입력 스크립트가 적절한 NTFS 권한으로 보안이 유지되고 있는지 확인합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MaxBinaryLength</maml:name><maml:description><maml:para>binary, varbinary와 같은 이진 문자열 데이터 형식의 열에 대해 반환되는 최대 바이트 수를 지정합니다. 기본값은 1,024바이트입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MaxCharLength</maml:name><maml:description><maml:para>char, nchar, varchar, nvarchar와 같은 유니코드 데이터 형식 또는 문자가 포함된 열에 대해 반환되는 최대 문자 수를 지정합니다. 기본값은 4,000자입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NewPassword</maml:name><maml:description><maml:para>SQL Server 인증 로그인 ID의 새 암호를 지정합니다. Invoke-Sqlcmd가 암호를 변경한 다음 종료합니다. -Username 및 -Password도 반드시 지정해야 하며, 여기서 -Password는 현재 로그인 암호를 지정합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>OutputSqlErrors</maml:name><maml:description><maml:para>Invoke-Sqlcmd 출력에 대해 오류 메시지를 표시할지 여부를 지정합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Boolean</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Password</maml:name><maml:description><maml:para>-Username에 지정된 SQL Server 인증 로그인의 암호를 지정합니다. 암호는 대소문자를 구분합니다. 가능하면 Windows 인증을 사용하십시오. 빈 암호를 사용하지 말고 가능하면 강력한 암호를 사용하십시오. 자세한 내용은 SQL Server 온라인 설명서의 "강력한 암호"를 참조하십시오.
</maml:para><maml:para>보안 참고사항: -Password를 입력한 다음 암호를 입력하면 누구나 모니터에서 해당 암호를 볼 수 있습니다. .ps1 스크립트에 -Password 다음에 사용자 암호가 나오는 코드를 포함하면 해당 스크립트 파일을 읽는 누구나 사용자 암호를 볼 수 있습니다. 다른 사람들이 파일을 읽을 수 없도록 파일에 적절한 NTFS 권한을 할당하십시오.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>QueryTimeout</maml:name><maml:description><maml:para>쿼리 제한 시간(초)을 지정합니다. 제한 시간 값을 지정하지 않으면 쿼리 시간이 제한되지 않습니다. 제한 시간은 1에서 65535 사이의 정수여야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="named" aliases=""><maml:name>ServerInstance</maml:name><maml:description><maml:para>데이터베이스 엔진의 인스턴스 이름을 지정하는 SMO 서버 개체 또는 문자열입니다. 기본 인스턴스의 경우에는 컴퓨터 이름 명명된 인스턴스의 경우 "ComputerName\InstanceName" 형식을 사용하십시오. 명명된 인스턴스의 경우에는 "ComputerName\InstanceName" 형식을 사용합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSObject</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>SeverityLevel</maml:name><maml:description><maml:para>Invoke-Sqlcmd가 ERRORLEVEL PowerShell 변수로 반환하는 오류 메시지 심각도 수준의 하한을 지정합니다. 심각도 수준이 -SeverityLevel과 같거나 높은 경우에만 Invoke-Sqlcmd가 실행한 쿼리에서 생성된 오류 메시지에서 가장 높은 심각도 수준을 반환합니다. -SeverityLevel이 지정되지 않았거나 0으로 설정되어 있으면 Invoke-Sqlcmd가 ERRORLEVEL로 0을 반환합니다. 데이터베이스 엔진 오류 메시지의 심각도 수준은 1부터 24까지입니다. Invoke-Sqlcmd는 심각도가 10인 정보 메시지의 심각도를 보고하지 않습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>SuppressProviderContextWarning</maml:name><maml:description><maml:para>Invoke-Sqlcmd가 cmdlet의 데이터베이스 컨텍스트를 구성하기 위해 현재 SQLSERVER:\SQL 경로 설정의 데이터베이스 컨텍스트를 사용한 것에 대한 경고를 표시하지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Username</maml:name><maml:description><maml:para>데이터베이스 엔진의 인스턴스에 대해 SQL Server 인증으로 연결하기 위한 로그인 ID를 지정합니다. 반드시 -Password를 사용하여 암호를 지정해야 합니다. -Username 및 -Password가 지정되지 않은 경우 Invoke-Sqlcmd는 PowerShell 세션을 실행하는 Windows 계정을 사용하여 Windows 인증 연결을 시도합니다.
</maml:para><maml:para>가능하면 Windows 인증을 사용하십시오.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Variable</maml:name><maml:description><maml:para>sqlcmd 스크립트에 사용할 sqlcmd 스크립팅 변수를 만들고 해당 변수에 대한 값을 설정합니다. 변수 및 해당 값을 여러 개 지정하려면 PowerShell 배열을 사용합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AbortOnError</maml:name><maml:description><maml:para>Invoke-Sqlcmd에서 오류가 발생한 경우 Invoke-Sqlcmd가 실행을 중지하고 오류 수준을 PowerShell ERRORLEVEL 변수로 반환하도록 지정합니다. 오류의 심각도가 10을 초과하는 경우 오류 수준 1이 반환되고 오류의 심각도가 10 이하인 경우는 오류 수준이 0입니다. -ErrorLevel도 지정된 경우는 오류 메시지의 심각도가 -ErrorLevel에 지정된 값과 같거나 높을 경우에만 Invoke-Sqlcmd에서 1을 반환합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ConnectionTimeout</maml:name><maml:description><maml:para>Invoke-Sqlcmd가 데이터베이스 엔진의 인스턴스에 성공적으로 연결하지 못할 경우 Invoke-Sqlcmd의 제한 시간(초)을 지정합니다. 제한 시간 값은 0에서 65534 사이의 정수여야 합니다. 0을 지정하면 연결 시도 시간이 제한되지 않습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Database</maml:name><maml:description><maml:para>데이터베이스 이름을 지정하는 문자열입니다. Invoke-Sqlcmd는 -ServerInstance에 지정된 인스턴스의 이 데이터베이스에 연결됩니다.
</maml:para><maml:para>-Database가 지정되지 않은 경우 사용되는 데이터베이스는 현재 경로에 SQLSERVER:\SQL 폴더 및 데이터베이스 이름이 모두 지정되었는지 여부에 따라 다릅니다. 경로에 SQL 폴더와 데이터베이스 이름이 모두 지정된 경우 Invoke-Sqlcmd는 경로에 지정된 데이터베이스에 연결됩니다. 경로가 SQL 폴더에 기초하지 않은 경우 또는 경로에 데이터베이스 이름이 없는 경우는 Invoke-Sqlcmd가 현재 로그인 ID의 기본 데이터베이스에 연결됩니다. -IgnoreProviderContext 스위치를 지정하면 Invoke-Sqlcmd가 현재 경로에 지정된 데이터베이스를 고려하지 않고 현재 로그인 ID의 기본 설정으로 정의된 데이터베이스에 연결됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>DedicatedAdministratorConnection</maml:name><maml:description><maml:para>관리자 전용 연결(DAC)을 사용하여 데이터베이스 엔진 인스턴스에 연결합니다. DAC는 시스템 관리자가 새 표준 연결이 허용되지 않는 문제 해결 인스턴스 등의 동작에 대해 사용합니다. 인스턴스는 DAC를 지원하도록 구성해야 합니다. DAC가 활성화되지 않은 경우 Invoke-Sqlcmd는 오류를 보고하고 실행을 중지합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>DisableCommands</maml:name><maml:description><maml:para>배치 파일로 실행할 때 보안을 손상시킬 수 있는 일부 sqlcmd 기능을 해제합니다. 그러면 PowerShell 변수가 Invoke-Sqlcmd 스크립트로 전달되지 않습니다. SQLCMDINI 스크립팅 변수에 지정된 시작 스크립트가 실행되지 않았습니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>DisableVariables</maml:name><maml:description><maml:para>Invoke-Sqlcmd가 sqlcmd 스크립팅 변수를 무시하도록 지정합니다. 이는 $(variable_name) 등을 비롯한 변수와 형식이 같은 문자열이 포함되어 있을 수 있는 INSERT 문이 스크립트에 많이 포함된 경우에 유용합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>EncryptConnection</maml:name><maml:description><maml:para>Invoke-Sqlcmd가 ServerInstance에 지정된 데이터베이스 엔진 인스턴스에 연결하는 데 SSL(Secure Sockets Layer) 암호화를 사용할지 여부를 지정합니다. TRUE를 지정하는 경우 SSL 암호화가 사용됩니다. FALSE를 지정하는 경우 암호화가 사용되지 않습니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ErrorLevel</maml:name><maml:description><maml:para>Invoke-Sqlcmd에서 심각도 수준이 지정된 값과 같거나 높은 오류 메시지만 표시하도록 지정합니다. -ErrorLevel이 지정되지 않았거나 0으로 설정된 경우 모든 오류 메시지가 표시됩니다. 데이터베이스 엔진의 오류 심각도는 1부터 24까지입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>HostName</maml:name><maml:description><maml:para>워크스테이션 이름을 지정합니다. 워크스테이션 이름은 sp_who 시스템 저장 프로시저에 의해 sys.processes 카탈로그 뷰의 hostname 열에 보고됩니다. HostName이 지정되지 않은 경우 기본값은 Invoke-Sqlcmd가 실행되고 있는 컴퓨터 이름입니다. HostName을 사용하여 다른 Invoke-Sqlcmd 세션을 식별할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>IgnoreProviderContext</maml:name><maml:description><maml:para>Invoke-Sqlcmd는 현재 SQLSERVER:\SQL 경로에 의해 구성된 데이터베이스 컨텍스트를 무시합니다. -Database 매개 변수가 지정되지 않은 경우 Invoke-Sqlcmd는 현재 로그인 ID 또는 Windows 계정의 기본 데이터베이스를 사용합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>IncludeSqlUserErrors</maml:name><maml:description><maml:para>Invoke-Sqlcmd를 보내 기본적으로 달리 무시되는 SQL 사용자 스크립트 오류를 반환합니다. 이 매개 변수를 지정하면 Invoke-Sqlcmd가 sqlcmd 유틸리티의 기본 동작과 일치합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>InputFile</maml:name><maml:description><maml:para>파일을 Invoke-Sqlcmd의 쿼리 입력으로 사용하도록 지정합니다. 이 파일은 Transact-SQL 문, XQuery 문 및 sqlcmd 명령과 스크립팅 변수를 포함할 수 있습니다. 파일의 전체 경로를 지정합니다. 파일 경로 또는 파일 이름에는 공백을 사용할 수 없습니다.
</maml:para><maml:para>신뢰할 수 있는 출처의 스크립트만 실행합니다. 모든 입력 스크립트가 적절한 NTFS 권한으로 보안이 유지되고 있는지 확인합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MaxBinaryLength</maml:name><maml:description><maml:para>binary, varbinary와 같은 이진 문자열 데이터 형식의 열에 대해 반환되는 최대 바이트 수를 지정합니다. 기본값은 1,024바이트입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MaxCharLength</maml:name><maml:description><maml:para>char, nchar, varchar, nvarchar와 같은 유니코드 데이터 형식 또는 문자가 포함된 열에 대해 반환되는 최대 문자 수를 지정합니다. 기본값은 4,000자입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NewPassword</maml:name><maml:description><maml:para>SQL Server 인증 로그인 ID의 새 암호를 지정합니다. Invoke-Sqlcmd가 암호를 변경한 다음 종료합니다. -Username 및 -Password도 반드시 지정해야 하며, 여기서 -Password는 현재 로그인 암호를 지정합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>OutputSqlErrors</maml:name><maml:description><maml:para>Invoke-Sqlcmd 출력에 대해 오류 메시지를 표시할지 여부를 지정합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Boolean</command:parameterValue><dev:type><maml:name>Boolean</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Password</maml:name><maml:description><maml:para>-Username에 지정된 SQL Server 인증 로그인의 암호를 지정합니다. 암호는 대소문자를 구분합니다. 가능하면 Windows 인증을 사용하십시오. 빈 암호를 사용하지 말고 가능하면 강력한 암호를 사용하십시오. 자세한 내용은 SQL Server 온라인 설명서의 "강력한 암호"를 참조하십시오.
</maml:para><maml:para>보안 참고사항: -Password를 입력한 다음 암호를 입력하면 누구나 모니터에서 해당 암호를 볼 수 있습니다. .ps1 스크립트에 -Password 다음에 사용자 암호가 나오는 코드를 포함하면 해당 스크립트 파일을 읽는 누구나 사용자 암호를 볼 수 있습니다. 다른 사람들이 파일을 읽을 수 없도록 파일에 적절한 NTFS 권한을 할당하십시오.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases=""><maml:name>Query</maml:name><maml:description><maml:para>실행할 쿼리를 하나 이상 지정합니다. Transact-SQL 또는 XQuery 문 또는 sqlcmd 명령의 쿼리가 허용됩니다. 세미콜론으로 구분한 복수 쿼리를 지정할 수 있습니다. sqlcmd GO 구분 기호를 지정하지 마십시오. 문자열에 포함된 큰따옴표를 모두 이스케이프합니다. MyTable같은 따옴표 붙은 식별자 대신 "MyTable"같은 대괄호로 묶인 식별자를 사용해 보십시오.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>QueryTimeout</maml:name><maml:description><maml:para>쿼리 제한 시간(초)을 지정합니다. 제한 시간 값을 지정하지 않으면 쿼리 시간이 제한되지 않습니다. 제한 시간은 1에서 65535 사이의 정수여야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="named" aliases=""><maml:name>ServerInstance</maml:name><maml:description><maml:para>데이터베이스 엔진의 인스턴스 이름을 지정하는 SMO 서버 개체 또는 문자열입니다. 기본 인스턴스의 경우에는 컴퓨터 이름 명명된 인스턴스의 경우 "ComputerName\InstanceName" 형식을 사용하십시오. 명명된 인스턴스의 경우에는 "ComputerName\InstanceName" 형식을 사용합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSObject</command:parameterValue><dev:type><maml:name>PSObject</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>SeverityLevel</maml:name><maml:description><maml:para>Invoke-Sqlcmd가 ERRORLEVEL PowerShell 변수로 반환하는 오류 메시지 심각도 수준의 하한을 지정합니다. 심각도 수준이 -SeverityLevel과 같거나 높은 경우에만 Invoke-Sqlcmd가 실행한 쿼리에서 생성된 오류 메시지에서 가장 높은 심각도 수준을 반환합니다. -SeverityLevel이 지정되지 않았거나 0으로 설정되어 있으면 Invoke-Sqlcmd가 ERRORLEVEL로 0을 반환합니다. 데이터베이스 엔진 오류 메시지의 심각도 수준은 1부터 24까지입니다. Invoke-Sqlcmd는 심각도가 10인 정보 메시지의 심각도를 보고하지 않습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>SuppressProviderContextWarning</maml:name><maml:description><maml:para>Invoke-Sqlcmd가 cmdlet의 데이터베이스 컨텍스트를 구성하기 위해 현재 SQLSERVER:\SQL 경로 설정의 데이터베이스 컨텍스트를 사용한 것에 대한 경고를 표시하지 않습니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Username</maml:name><maml:description><maml:para>데이터베이스 엔진의 인스턴스에 대해 SQL Server 인증으로 연결하기 위한 로그인 ID를 지정합니다. 반드시 -Password를 사용하여 암호를 지정해야 합니다. -Username 및 -Password가 지정되지 않은 경우 Invoke-Sqlcmd는 PowerShell 세션을 실행하는 Windows 계정을 사용하여 Windows 인증 연결을 시도합니다.
</maml:para><maml:para>가능하면 Windows 인증을 사용하십시오.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Variable</maml:name><maml:description><maml:para>sqlcmd 스크립트에 사용할 sqlcmd 스크립팅 변수를 만들고 해당 변수에 대한 값을 설정합니다. 변수 및 해당 값을 여러 개 지정하려면 PowerShell 배열을 사용합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>PSObject</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>Formatted table</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>
  
-------------------------- EXAMPLE 1 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Invoke-Sqlcmd -Query "SELECT GETDATE() AS TimeOfQuery;" -ServerInstance "MyComputer\MyInstance"
 
TimeOfQuery
-----------
5/13/2010 8:49:43 PM
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 예에서는 컴퓨터의 데이터베이스 엔진의 명명된 인스턴스에 연결하고 기본 Transact-SQL 스크립트를 실행합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
  
-------------------------- EXAMPLE 2 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Invoke-Sqlcmd -InputFile "C:\MyFolder\TestSqlCmd.sql" | Out-File -filePath "C:\MyFolder\TestSqlCmd.rpt"
 
Output sent to TestSqlCmd.rpt.
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 예에서는 Transact-SQL 문과 sqlcmd 명령이 포함된 파일을 읽고 해당 파일을 실행하며 출력을 다른 파일에 씁니다. 모든 출력 스크립트가 적절한 NTFS 권한으로 보안이 유지되고 있는지 확인합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
  
-------------------------- EXAMPLE 3 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;$MyArray = "MYVAR1='String1'", "MYVAR2='String2'"
Invoke-Sqlcmd -Query "SELECT `$(MYVAR1) AS Var1, `$(MYVAR2) AS Var2;" -Variable $MyArray
 
Var1 Var2
---- ----
String1 String2
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 예에서는 -Variable 매개 변수에 대한 입력으로 문자열 배열을 사용합니다. 이 배열은 여러 sqlcmd 변수를 정의합니다. SELECT 문에서 sqlcmd 변수를 식별하는 $ 기호는 역따옴표(`) 문자를 사용하여 이스케이프 처리되었습니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
  
-------------------------- EXAMPLE 4 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Set-Location SQLSERVER:\SQL\MyComputer\MyInstance
Invoke-Sqlcmd -Query "SELECT SERVERPROPERTY('MachineName') AS ComputerName;" -ServerInstance (Get-Item .)
 
WARNING: Using provider context. Server = MyComputer
 
ComputerName
------------
MyComputer
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 예에서는 Set-Location을 사용하여 데이터베이스 엔진 인스턴스에 대한 SQL Server PowerShell 공급자로 이동합니다. 그런 다음 Get-Item을 사용하여 Invoke-Sqlcmd의 -ServerInstance 매개 변수로 사용할 SMO Server 개체를 검색합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
  
-------------------------- EXAMPLE 5 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Invoke-Sqlcmd -Query "PRINT N'abc'" -Verbose
 
VERBOSE: abc
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 예에서는 PowerShell -Verbose 매개 변수를 사용하여 PRINT 명령의 메시지 출력을 반환합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
  
-------------------------- EXAMPLE 6 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Set-Location SQLSERVER:\SQL\MyComputer\DEFAULT\Databases\AdventureWorks2014
Invoke-Sqlcmd "SELECT DB_NAME() AS DatabaseName;"
 
WARNING: Using provider context. Server = MyComputer, Database = AdventureWorks2014.
 
DatabaseName
------------
AdventureWorks2014
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 예에서는 위치 문자열을 사용하여 입력을 -Query 매개 변수에 제공합니다. 또한 Invoke-Sqlcmd가 데이터베이스 컨텍스트를 AdventureWorks2014로 설정하기 위해 현재 경로를 사용하는 방식을 보여 줍니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>SQL Server Books Online: Transact-SQL Reference</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>SQL Server Books Online: sqlcmd Utility</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>SQL Server Books Online: XQuery Reference</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Join-SqlAvailabilityGroup</command:name><maml:description><maml:para>InputObject 또는 Path 매개 변수에 지정된 가용성 복제본을 Name 매개 변수로 지정된 가용성 그룹에 조인합니다. </maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Join</command:verb><command:noun>SqlAvailabilityGroup</command:noun><dev:version /></command:details><maml:description><maml:para>Join-SqlAvailabilityGroup cmdlet이 로컬 보조 복제본을 Name 매개 변수에 지정된 가용성 그룹에 조인합니다. 이 cmdlet은 아직 가용성 그룹에 조인되지 않은 보조 복제본을 호스팅하는 SQL Server 인스턴스에서만 실행할 수 있습니다.
</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Join-SqlAvailabilityGroup</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Name</maml:name><maml:description><maml:para>가용성 그룹의 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>가용성 그룹에 조인할 보조 복제본을 호스팅하는 SQL Server 인스턴스에 대한 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Join-SqlAvailabilityGroup</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Name</maml:name><maml:description><maml:para>가용성 그룹의 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="3" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>보조 복제본을 호스팅하는 SQL Server 인스턴스의 Server 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Server</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="3" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>보조 복제본을 호스팅하는 SQL Server 인스턴스의 Server 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Server</command:parameterValue><dev:type><maml:name>Server</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Name</maml:name><maml:description><maml:para>가용성 그룹의 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>가용성 그룹에 조인할 보조 복제본을 호스팅하는 SQL Server 인스턴스에 대한 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>Microsoft.SqlServer.Management.Smo.Server</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>
 
가용성 그룹에 조인될 가용성 복제본입니다.
 
 
</maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><maml:alertSet><maml:title /><maml:alert><maml:para>서비스 인스턴스에 고가용성 데이터 복구 서비스가 사용되어야 하며, Path에서 지정한 가용성 복제가 있어야 합니다.
</maml:para></maml:alert><maml:alert></maml:alert></maml:alertSet><command:examples><command:example><maml:title>
  
-------------------------- EXAMPLE 1 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Join-SqlAvailabilityGroup -Path SQLSERVER:\SQL\SecondaryServer\InstanceName -Name 'MyAg'
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 지정된 경로에 있는 서버 인스턴스에서 호스팅하는 보조 복제본을 이름이 'MyAg'인 가용성 그룹에 조인합니다. 이 서버 인스턴스는 이 가용성 그룹에서 보조 복제본을 호스팅해야 합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
  
-------------------------- EXAMPLE 2 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Join-SqlAvailabilityGroup -Path SQLSERVER:\SQL\SecondaryServer\InstanceName -Name 'MyAg' -Script
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 지정된 경로에 있는 서버 인스턴스가 호스팅하는 보조 복제본을 'MyAg'라는 가용성 그룹에 조인하는 Transact-SQL 스크립트를 출력합니다. 이 서버 인스턴스는 이 가용성 그룹에서 보조 복제본을 호스팅해야 합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>SQL Server Books Online: Joining a Secondary Replica to an Availability Group (SQL Server)</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>New-SqlAvailabilityGroup</command:name><maml:description><maml:para>초기 주 복제본을 호스팅할 서버 인스턴스에 가용성 그룹을 만듭니다.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>New</command:verb><command:noun>SqlAvailabilityGroup</command:noun><dev:version /></command:details><maml:description><maml:para>New-SqlAvailabilityGroup cmdlet은 가용성 그룹을 만듭니다. InputObject 또는 Path 매개 변수에서 지정한 서버 인스턴스가 초기 주 복제본을 호스팅합니다.
</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>New-SqlAvailabilityGroup</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Name</maml:name><maml:description><maml:para>생성할 가용성 그룹의 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>가용성 그룹의 초기 주 복제본을 호스팅할 SQL Server 인스턴스에 대한 경로입니다. 지정된 경로가 없을 경우 오류가 throw됩니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AutomatedBackupPreference</maml:name><maml:description><maml:para>가용성 그룹에 대해 자동화된 백업 기본 설정입니다. 유효한 옵션은 다음과 같습니다.
</maml:para><maml:para>Primary: 백업이 항상 주 복제본에서 수행되도록 지정합니다. 그 이유는 차등 백업과 같이 백업이 보조 복제본에서 실행될 경우 사용할 수 없는 기능이 필요한 경우가 많기 때문입니다.
</maml:para><maml:para>SecondaryOnly: 백업이 주 복제본에서 수행되지 않도록 지정합니다. 주 복제본이 유일한 온라인 복제본인 경우에는 백업이 수행되지 않습니다.
</maml:para><maml:para>Secondary: 주 복제본이 유일한 온라인 복제본이 아닐 경우 백업이 보조 복제본에서 발생하도록 지정합니다. 그런 다음 백업이 주 복제본에서 발생합니다.
</maml:para><maml:para>None: 이 옵션은 백업을 수행할 복제본을 선택할 때 사용자가 주/보조 상태를 고려하지 않도록 지정합니다. BackupPriority와 Online/Connected 상태만 함께 고려합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityGroupAutomatedBackupPreference</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Database</maml:name><maml:description><maml:para>전체 복구 모델을 사용하고 AUTO_CLOSE를 사용하지 않는 로컬 읽기/쓰기 사용자 데이터베이스의 목록입니다. 이러한 데이터베이스는 다른 가용성 그룹에 속할 수 없으며 데이터베이스 미러링에 대해 구성할 수 없습니다. 이 매개 변수는 Null일 수 없으며 비워 둘 수 없습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>FailureConditionLevel</maml:name><maml:description><maml:para>가용성 그룹의 자동 장애 조치(Failover)를 결정합니다. 유효한 옵션은 다음과 같습니다.
</maml:para><maml:para>OnServerDown: SQL Server 서비스가 중지되는 경우 장애 조치(Failover) 또는 다시 시작합니다.
</maml:para><maml:para>OnServerUnresponsive: 낮은 값의 임의의 조건이 충족되었으며, SQL Server 서비스가 클러스터에 연결되어 있고 "HealthCheckTimeout" 임계값이 초과된 경우, 또는 주 역할의 가용성 복제본이 현재 실패 상태인 경우 장애 조치(Failover) 또는 다시 시작합니다. (HealthCheckTimeout 매개 변수 참조)
</maml:para><maml:para>OnCriticalServerError: 낮은 값의 임의의 조건이 충족되고 내부에서 중요한 서버 오류가 발생하는 경우(메모리 부족 상태, 심각한 쓰기 액세스 위반 또는 과다한 덤핑) 장애 조치(Failover) 또는 다시 시작합니다.
</maml:para><maml:para>OnModerateServerError: 낮은 값의 임의의 조건이 충족되고 일반적인 서버 오류가 발생하는 경우(지속적인 메모리 부족 상태) 자동 장애 조치가 트리거됩니다.
</maml:para><maml:para>OnAnyQualifiedFailureConditions: 낮은 값의 임의의 조건이 충족되고 적합한 실패 조건이 발생하는 경우(엔진의 작업자 스레드가 소진된 경우, 해결할 수 없는 교착 상태가 발견된 경우) 장애 조치(Failover) 또는 다시 시작합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityGroupFailureConditionLevel</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>HealthCheckTimeout</maml:name><maml:description><maml:para>이 시간이 지나면 응답 없는 서버를 비정상 상태로 선언합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AvailabilityReplica</maml:name><maml:description><maml:para>새 가용성 그룹에 포함하려는 각 가용성 복제본의 AvailabilityReplica 개체입니다. 이 매개 변수는 중첩할 수 있지만 비어 있거나 null이 될 수 없습니다.
</maml:para><maml:para>팁: AvailabilityReplica 개체를 만들려면 AsTemplate 매개 변수와 함께 New-SqlAvailabilityReplica cmdlet을 사용합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">AvailabilityReplica[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>New-SqlAvailabilityGroup</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Name</maml:name><maml:description><maml:para>생성할 가용성 그룹의 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="3" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>주 복제본을 호스팅하는 인스턴스의 Server 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Context</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AutomatedBackupPreference</maml:name><maml:description><maml:para>가용성 그룹에 대해 자동화된 백업 기본 설정입니다. 유효한 옵션은 다음과 같습니다.
</maml:para><maml:para>Primary: 백업이 항상 주 복제본에서 수행되도록 지정합니다. 그 이유는 차등 백업과 같이 백업이 보조 복제본에서 실행될 경우 사용할 수 없는 기능이 필요한 경우가 많기 때문입니다.
</maml:para><maml:para>SecondaryOnly: 백업이 주 복제본에서 수행되지 않도록 지정합니다. 주 복제본이 유일한 온라인 복제본인 경우에는 백업이 수행되지 않습니다.
</maml:para><maml:para>Secondary: 주 복제본이 유일한 온라인 복제본이 아닐 경우 백업이 보조 복제본에서 발생하도록 지정합니다. 그런 다음 백업이 주 복제본에서 발생합니다.
</maml:para><maml:para>None: 이 옵션은 백업을 수행할 복제본을 선택할 때 사용자가 주/보조 상태를 고려하지 않도록 지정합니다. BackupPriority와 Online/Connected 상태만 함께 고려합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityGroupAutomatedBackupPreference</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Database</maml:name><maml:description><maml:para>전체 복구 모델을 사용하고 AUTO_CLOSE를 사용하지 않는 로컬 읽기/쓰기 사용자 데이터베이스의 목록입니다. 이러한 데이터베이스는 다른 가용성 그룹에 속할 수 없으며 데이터베이스 미러링에 대해 구성할 수 없습니다. 이 매개 변수는 Null일 수 없으며 비워 둘 수 없습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>FailureConditionLevel</maml:name><maml:description><maml:para>가용성 그룹의 자동 장애 조치(Failover)를 결정합니다. 유효한 옵션은 다음과 같습니다.
</maml:para><maml:para>OnServerDown: SQL Server 서비스가 중지되는 경우 장애 조치(Failover) 또는 다시 시작합니다.
</maml:para><maml:para>OnServerUnresponsive: 낮은 값의 임의의 조건이 충족되었으며, SQL Server 서비스가 클러스터에 연결되어 있고 "HealthCheckTimeout" 임계값이 초과된 경우, 또는 주 역할의 가용성 복제본이 현재 실패 상태인 경우 장애 조치(Failover) 또는 다시 시작합니다. (HealthCheckTimeout 매개 변수 참조)
</maml:para><maml:para>OnCriticalServerError: 낮은 값의 임의의 조건이 충족되고 내부에서 중요한 서버 오류가 발생하는 경우(메모리 부족 상태, 심각한 쓰기 액세스 위반 또는 과다한 덤핑) 장애 조치(Failover) 또는 다시 시작합니다.
</maml:para><maml:para>OnModerateServerError: 낮은 값의 임의의 조건이 충족되고 일반적인 서버 오류가 발생하는 경우(지속적인 메모리 부족 상태) 자동 장애 조치가 트리거됩니다.
</maml:para><maml:para>OnAnyQualifiedFailureConditions: 낮은 값의 임의의 조건이 충족되고 적합한 실패 조건이 발생하는 경우(엔진의 작업자 스레드가 소진된 경우, 해결할 수 없는 교착 상태가 발견된 경우) 장애 조치(Failover) 또는 다시 시작합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityGroupFailureConditionLevel</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>HealthCheckTimeout</maml:name><maml:description><maml:para>이 시간이 지나면 응답 없는 서버를 비정상 상태로 선언합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AvailabilityReplica</maml:name><maml:description><maml:para>새 가용성 그룹에 포함하려는 각 가용성 복제본의 AvailabilityReplica 개체입니다. 이 매개 변수는 중첩할 수 있지만 비어 있거나 null이 될 수 없습니다.
</maml:para><maml:para>팁: AvailabilityReplica 개체를 만들려면 AsTemplate 매개 변수와 함께 New-SqlAvailabilityReplica cmdlet을 사용합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">AvailabilityReplica[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AutomatedBackupPreference</maml:name><maml:description><maml:para>가용성 그룹에 대해 자동화된 백업 기본 설정입니다. 유효한 옵션은 다음과 같습니다.
</maml:para><maml:para>Primary: 백업이 항상 주 복제본에서 수행되도록 지정합니다. 그 이유는 차등 백업과 같이 백업이 보조 복제본에서 실행될 경우 사용할 수 없는 기능이 필요한 경우가 많기 때문입니다.
</maml:para><maml:para>SecondaryOnly: 백업이 주 복제본에서 수행되지 않도록 지정합니다. 주 복제본이 유일한 온라인 복제본인 경우에는 백업이 수행되지 않습니다.
</maml:para><maml:para>Secondary: 주 복제본이 유일한 온라인 복제본이 아닐 경우 백업이 보조 복제본에서 발생하도록 지정합니다. 그런 다음 백업이 주 복제본에서 발생합니다.
</maml:para><maml:para>None: 이 옵션은 백업을 수행할 복제본을 선택할 때 사용자가 주/보조 상태를 고려하지 않도록 지정합니다. BackupPriority와 Online/Connected 상태만 함께 고려합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityGroupAutomatedBackupPreference</command:parameterValue><dev:type><maml:name>AvailabilityGroupAutomatedBackupPreference</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AvailabilityReplica</maml:name><maml:description><maml:para>새 가용성 그룹에 포함하려는 각 가용성 복제본의 AvailabilityReplica 개체입니다. 이 매개 변수는 중첩할 수 있지만 비어 있거나 null이 될 수 없습니다.
</maml:para><maml:para>팁: AvailabilityReplica 개체를 만들려면 AsTemplate 매개 변수와 함께 New-SqlAvailabilityReplica cmdlet을 사용합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">AvailabilityReplica[]</command:parameterValue><dev:type><maml:name>AvailabilityReplica[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Database</maml:name><maml:description><maml:para>전체 복구 모델을 사용하고 AUTO_CLOSE를 사용하지 않는 로컬 읽기/쓰기 사용자 데이터베이스의 목록입니다. 이러한 데이터베이스는 다른 가용성 그룹에 속할 수 없으며 데이터베이스 미러링에 대해 구성할 수 없습니다. 이 매개 변수는 Null일 수 없으며 비워 둘 수 없습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>FailureConditionLevel</maml:name><maml:description><maml:para>가용성 그룹의 자동 장애 조치(Failover)를 결정합니다. 유효한 옵션은 다음과 같습니다.
</maml:para><maml:para>OnServerDown: SQL Server 서비스가 중지되는 경우 장애 조치(Failover) 또는 다시 시작합니다.
</maml:para><maml:para>OnServerUnresponsive: 낮은 값의 임의의 조건이 충족되었으며, SQL Server 서비스가 클러스터에 연결되어 있고 "HealthCheckTimeout" 임계값이 초과된 경우, 또는 주 역할의 가용성 복제본이 현재 실패 상태인 경우 장애 조치(Failover) 또는 다시 시작합니다. (HealthCheckTimeout 매개 변수 참조)
</maml:para><maml:para>OnCriticalServerError: 낮은 값의 임의의 조건이 충족되고 내부에서 중요한 서버 오류가 발생하는 경우(메모리 부족 상태, 심각한 쓰기 액세스 위반 또는 과다한 덤핑) 장애 조치(Failover) 또는 다시 시작합니다.
</maml:para><maml:para>OnModerateServerError: 낮은 값의 임의의 조건이 충족되고 일반적인 서버 오류가 발생하는 경우(지속적인 메모리 부족 상태) 자동 장애 조치가 트리거됩니다.
</maml:para><maml:para>OnAnyQualifiedFailureConditions: 낮은 값의 임의의 조건이 충족되고 적합한 실패 조건이 발생하는 경우(엔진의 작업자 스레드가 소진된 경우, 해결할 수 없는 교착 상태가 발견된 경우) 장애 조치(Failover) 또는 다시 시작합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityGroupFailureConditionLevel</command:parameterValue><dev:type><maml:name>AvailabilityGroupFailureConditionLevel</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>HealthCheckTimeout</maml:name><maml:description><maml:para>이 시간이 지나면 응답 없는 서버를 비정상 상태로 선언합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="3" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>주 복제본을 호스팅하는 인스턴스의 Server 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Context</command:parameterValue><dev:type><maml:name>Context</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Name</maml:name><maml:description><maml:para>생성할 가용성 그룹의 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>가용성 그룹의 초기 주 복제본을 호스팅할 SQL Server 인스턴스에 대한 경로입니다. 지정된 경로가 없을 경우 오류가 throw됩니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>Microsoft.SqlServer.Management.Smo.Server</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>
 
주 복제본이 들어 있는 서버 인스턴스를 지정합니다.
</maml:para><maml:para>
</maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>Microsoft.SqlServer.Management.Smo.AvailabilityGroup</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>
 
가용성 그룹이 들어 있는 새로운 파워 셸 개체입니다.
 
 
</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>
  
-------------------------- EXAMPLE 1 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;$primaryServer = Get-Item "SQLSERVER:\SQL\PrimaryServer\InstanceName"
$secondaryServer = Get-Item "SQLSERVER:\SQL\SecondaryServer\InstanceName"
 
$primaryReplica = New-SqlAvailabilityReplica `
-Name "PrimaryServer\InstanceName" `
-EndpointUrl "TCP://PrimaryServer.domain:5022" `
-FailoverMode "Automatic" `
-AvailabilityMode "SynchronousCommit" `
-AsTemplate `
-Version ($primaryServer.Version)
 
# Create the initial secondary replica
$secondaryReplica = New-SqlAvailabilityReplica `
-Name "SecondaryServer\InstanceName" `
-EndpointUrl "TCP://SecondaryServer.domain:5022" `
-FailoverMode "Automatic" `
-AvailabilityMode "SynchronousCommit" `
-AsTemplate `
-Version ($secondaryServer.Version)
 
# Create the Availability Group.
New-SqlAvailabilityGroup -InputObject $primaryServer -Name MyAG -AvailabilityReplica ($primaryReplica, $secondaryReplica) -Database @("MyDatabase1","MyDatabase2")
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 예에서는 가용성 복제본 두 개와 가용성 데이터베이스 두 개('MyDatabase1' 및 'MyDatabase2')가 포함된 'MyAG'라는 새 가용성 그룹을 만듭니다. 가장 먼저, 이 예에서는 New-SqlAvailabilityReplica cmdlet을 사용하여 두 복제본('$primaryReplica' 및 '$secondaryReplica')의 메모리 내 표현을 만듭니다. 이러한 복제본은 자동 장애 조치(Failover)와 함께 비동기 커밋 가용성 모드를 사용하도록 구성되어 있습니다. 해당 데이터베이스 미러링 끝점은 포트 5022를 사용합니다. 그런 다음 이 예에서는 New-SqlAvailabilityGroup cmdlet을 사용하여 가용성 그룹을 만듭니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>SQL Server Books Online: Creating an Availability Group (SQL Server)</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>SQL Server Books Online: "HADR" Prerequisites and Restrictions</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>SQL Server Books Online: Specifying the Endpoint URL for an Availability Replica (SQL Server)</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>New-SqlAvailabilityGroupListener</command:name><maml:description><maml:para>새 가용성 그룹 수신기를 만들고 기존 가용성 그룹에 연결합니다.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>New</command:verb><command:noun>SqlAvailabilityGroupListener</command:noun><dev:version /></command:details><maml:description><maml:para>New-SqlAvailabilityGroupListener cmdlet은 새 가용성 그룹 수신기를 만들어 기존 가용성 그룹에 연결합니다. 가용성 그룹 및 IP 주소를 식별하는 매개 변수를 사용합니다. 이 cmdlet은 주 복제본을 호스팅하는 서버 인스턴스에서만 실행할 수 있습니다.
</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>New-SqlAvailabilityGroupListener</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Name</maml:name><maml:description><maml:para>수신기 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>가용성 그룹의 경로입니다. 새 수신기는 이 경로로 지정된 가용성 그룹에 연결됩니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>DhcpSubnet</maml:name><maml:description><maml:para>수신기가 인수로 지정된 서브넷의 DHCP를 사용하도록 지정합니다. 이 인수는 IPv4 주소와 슬래시 다음에 표기한 서브넷 마스크여야 합니다(예: 192.168.0.1\255.255.255.0).
</maml:para><maml:para>StaticIp 및 DhcpSubnet 옵션은 함께 사용할 수 없습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Port</maml:name><maml:description><maml:para>수신기가 연결을 수신하는 데 사용할 포트입니다. 기본 포트는 TCP 포트 1433입니다. 보안 문제가 있는 경우에는 다른 포트 번호를 사용하는 것이 좋습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>StaticIp</maml:name><maml:description><maml:para>수신기를 인수로 지정된 고정 IP 주소로 구성하도록 지정합니다. 이 인수는 문자열의 목록이어야 합니다. 각 문자열은 IPv4 주소와 슬래시 다음에 표기한 서브넷 마스크(예: 192.168.1.1/255.255.255.0) 또는 IPv6 주소일 수 있습니다.
</maml:para><maml:para>StaticIp 및 DhcpSubnet 옵션은 함께 사용할 수 없습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>New-SqlAvailabilityGroupListener</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Name</maml:name><maml:description><maml:para>수신기 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="3" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>수신기를 연결해야 할 가용성 그룹의 가용성 그룹 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Context</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>DhcpSubnet</maml:name><maml:description><maml:para>수신기가 인수로 지정된 서브넷의 DHCP를 사용하도록 지정합니다. 이 인수는 IPv4 주소와 슬래시 다음에 표기한 서브넷 마스크여야 합니다(예: 192.168.0.1\255.255.255.0).
</maml:para><maml:para>StaticIp 및 DhcpSubnet 옵션은 함께 사용할 수 없습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Port</maml:name><maml:description><maml:para>수신기가 연결을 수신하는 데 사용할 포트입니다. 기본 포트는 TCP 포트 1433입니다. 보안 문제가 있는 경우에는 다른 포트 번호를 사용하는 것이 좋습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>StaticIp</maml:name><maml:description><maml:para>수신기를 인수로 지정된 고정 IP 주소로 구성하도록 지정합니다. 이 인수는 문자열의 목록이어야 합니다. 각 문자열은 IPv4 주소와 슬래시 다음에 표기한 서브넷 마스크(예: 192.168.1.1/255.255.255.0) 또는 IPv6 주소일 수 있습니다.
</maml:para><maml:para>StaticIp 및 DhcpSubnet 옵션은 함께 사용할 수 없습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>DhcpSubnet</maml:name><maml:description><maml:para>수신기가 인수로 지정된 서브넷의 DHCP를 사용하도록 지정합니다. 이 인수는 IPv4 주소와 슬래시 다음에 표기한 서브넷 마스크여야 합니다(예: 192.168.0.1\255.255.255.0).
</maml:para><maml:para>StaticIp 및 DhcpSubnet 옵션은 함께 사용할 수 없습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="3" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>수신기를 연결해야 할 가용성 그룹의 가용성 그룹 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Context</command:parameterValue><dev:type><maml:name>Context</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Name</maml:name><maml:description><maml:para>수신기 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>가용성 그룹의 경로입니다. 새 수신기는 이 경로로 지정된 가용성 그룹에 연결됩니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Port</maml:name><maml:description><maml:para>수신기가 연결을 수신하는 데 사용할 포트입니다. 기본 포트는 TCP 포트 1433입니다. 보안 문제가 있는 경우에는 다른 포트 번호를 사용하는 것이 좋습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue>65535 </dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>StaticIp</maml:name><maml:description><maml:para>수신기를 인수로 지정된 고정 IP 주소로 구성하도록 지정합니다. 이 인수는 문자열의 목록이어야 합니다. 각 문자열은 IPv4 주소와 슬래시 다음에 표기한 서브넷 마스크(예: 192.168.1.1/255.255.255.0) 또는 IPv6 주소일 수 있습니다.
</maml:para><maml:para>StaticIp 및 DhcpSubnet 옵션은 함께 사용할 수 없습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>Microsoft.SqlServer.Management.Smo.AvailabilityGroup</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>
 
 
 
                -------------------------- EXAMPLE 1 --------------------------
 
 
 
            </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;New-SqlAvailabilityGroupListener -Name MyListener -Path SQLSERVER:\SQL\PrimaryServer\InstanceName\AvailabilityGroups\MyAg
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'MyAg' 가용성 그룹에 대해 'MyListener'라는 가용성 그룹 수신기를 만듭니다. 이 수신기는 가상 IP 주소를 얻기 위해 DHCP를 사용합니다. 이 명령은 주 가용성 복제본을 호스팅하는 서버 인스턴스에서 실행해야 합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
 
 
 
                -------------------------- EXAMPLE 2 --------------------------
 
 
 
            </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;New-SqlAvailabilityGroupListener -Name MyListener -Path SQLSERVER:\SQL\PrimaryServer\InstanceName\AvailabilityGroups\MyAg -Port 1434
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'MyAg' 가용성 그룹에 대해 'MyListener'라는 가용성 그룹 수신기를 만듭니다. 이 수신기는 DHCP를 사용하여 가상 IP 주소를 가져오며 포트 1434에서 연결을 수신합니다. 이 명령은 주 가용성 복제본을 호스팅하는 서버 인스턴스에서 실행해야 합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
 
 
 
                -------------------------- EXAMPLE 3 --------------------------
 
 
 
            </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;New-SqlAvailabilityGroupListener -Name MyListener -DhcpSubnet '192.169.0.1/255.255.252.0' -Path SQLSERVER:\SQL\PrimaryServer\InstanceName\AvailabilityGroups\MyAg
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'MyAg' 가용성 그룹에 대해 'MyListener'라는 가용성 그룹 수신기를 만듭니다. 이 수신기는 지정된 서브넷의 DHCP를 사용하여 가상 IP 주소를 가져옵니다. 이 명령은 주 가용성 복제본을 호스팅하는 서버 인스턴스에서 실행해야 합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
 
 
 
                -------------------------- EXAMPLE 4 --------------------------
 
 
 
            </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;New-SqlAvailabilityGroupListener -Name MyListener -StaticIp '192.168.3.1/255.255.252.0' -Path SQLSERVER:\Sql\Computer\Instance\AvailabilityGroups\MyAg
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'MyAg' 가용성 그룹에 대해 'MyListener'라는 가용성 그룹 수신기를 만듭니다. 이 수신기는 가상 IP 주소로 -StaticIp 매개 변수에 전달된 IPv4 주소를 사용합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
 
 
 
                -------------------------- EXAMPLE 5 --------------------------
 
 
 
            </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;New-SqlAvailabilityGroupListener -Name MyListener -Path SQLSERVER:\Sql\Computer\Instance\AvailabilityGroups\MyAg -Script
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'MyAg' 가용성 그룹에 대해 'MyListener'라는 가용성 그룹 수신기를 만드는 Transact-SQL 스크립트를 출력합니다. 이 명령으로 수신기가 실제로 만들어지는 것은 아닙니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText></maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>New-SqlAvailabilityReplica</command:name><maml:description><maml:para>새 가용성 복제본을 만듭니다. 이 cmdlet은 주 가용성 복제본을 호스팅하는 서버 인스턴스에서 실행해야 합니다.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>New</command:verb><command:noun>SqlAvailabilityReplica</command:noun><dev:version /></command:details><maml:description><maml:para>New-SqlAvailabilityReplica cmdlet은 가용성 복제본을 만듭니다. 이 cmdlet은 주 가용성 복제본을 호스팅하는 SQL Server 인스턴스에서 실행해야 합니다.
</maml:para><maml:para>AsTemplate, InputObject 및 Path 매개 변수는 함께 사용할 수 없습니다.
</maml:para><maml:para>새 가용성 그룹을 만들기 전에 AvailabilityReplica 개체를 만들려면 AsTemplate 매개 변수를 사용합니다.
</maml:para><maml:para>복제본을 기존 가용성 그룹에 추가할 경우 InputObject 또는 Path 매개 변수를 사용하여 가용성 그룹의 경로를 지정합니다. 둘 다 지정하지 않은 경우 현재 경로가 사용됩니다.
</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>New-SqlAvailabilityReplica</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Name</maml:name><maml:description><maml:para>새 가용성 복제본의 이름입니다. computer\instance 형식을 사용하여 이 이름을 지정합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>가용성 그룹의 경로입니다. 새 복제본은 이 경로에 있는 가용성 그룹에 속합니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupPriority</maml:name><maml:description><maml:para>이 옵션은 0부터 100까의 정수이며 복제본 백업 수행의 원하는 우선 순위를 나타냅니다. 사용 가능한 온라인 복제본 집합 중에서 우선 순위가 가장 높은 복제본이 백업 수행 대상으로 선택됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ConnectionModeInPrimaryRole</maml:name><maml:description><maml:para>주 역할에서 가용성 복제본이 연결을 처리할 방법입니다. 유효한 설정은 다음과 같습니다.
</maml:para><maml:para>AllowReadWriteConnections: 읽기/쓰기 연결 허용
</maml:para><maml:para>AllowAllConnections: 모든 연결 허용
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityReplicaConnectionModeInPrimaryRole</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ConnectionModeInSecondaryRole</maml:name><maml:description><maml:para>보조 역할에서 가용성 복제본이 연결을 처리할 방법입니다. 유효한 설정은 다음과 같습니다.
</maml:para><maml:para>AllowNoConnections: 연결 허용 안 함
</maml:para><maml:para>AllowReadIntentConnectionsOnly: 읽기 전용 연결만 허용
</maml:para><maml:para>AllowAllConnections: 모든 연결 허용
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityReplicaConnectionModeInSecondaryRole</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ReadonlyRoutingConnectionUrl</maml:name><maml:description><maml:para>읽기 전용 연결을 위해 복제본으로 라우팅할 때 사용할 포트와 연결 정규화된 도메인 이름(FQDN)입니다. 예를 들면 다음과 같습니다.
</maml:para><maml:para>TCP://DBSERVER8.manufacturing.Adventure-Works.com:7024
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ReadOnlyRoutingList</maml:name><maml:description><maml:para>이 가용성 복제본을 통해 읽기 전용 연결로 리디렉션할 경우 사용할 연결 디렉터의 프로브 순서를 나타내는 복제 서버 이름을 순서대로 나열한 목록입니다. 이 목록은 가용성 복제본이 가용성 그룹의 현재 주 복제본일 경우에 적용됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>SessionTimeout</maml:name><maml:description><maml:para>연결이 실패한 것으로 간주하기 전에 주 복제본과 이 복제본 사이의 응답을 대기하는 시간(초)입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AvailabilityMode</maml:name><maml:description><maml:para>복제본이 동기 커밋 모드인지 또는 비동기 커밋 모드인지를 나타냅니다. null일 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityReplicaAvailabilityMode</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>EndpointUrl</maml:name><maml:description><maml:para>데이터베이스 미러링 끝점의 URL입니다. 이 URL은 TCP://system-address:port 형식의 CTP 주소입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>FailoverMode</maml:name><maml:description><maml:para>자동 또는 수동일 수 있습니다. null일 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityReplicaFailoverMode</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>New-SqlAvailabilityReplica</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Name</maml:name><maml:description><maml:para>새 가용성 복제본의 이름입니다. computer\instance 형식을 사용하여 이 이름을 지정합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AsTemplate</maml:name><maml:description><maml:para>메모리에 임시 AvailabilityReplica 개체를 만들 새 가용성 복제본의 경로입니다. AsTemplate을 사용하여 새 가용성 그룹에 포함하려는 각각의 새 가용성 복제본을 만듭니다. 그런 다음 New-SqlAvailabilityGroup cmdlet을 실행하고 AvailabilityReplica 매개 변수 값으로 AvailabilityReplica 개체를 지정하여 가용성 그룹을 만듭니다.
</maml:para><maml:para>AsTemplate을 지정하면 InputObject 및 Path 매개 변수가 무시됩니다.
</maml:para><maml:para>AsTemplate을 지정하면 SQL Server 버전을 Version 매개 변수로 전달하거나 현재 세션에 인스턴스에 대한 활성 연결이 있어야 합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupPriority</maml:name><maml:description><maml:para>이 옵션은 0부터 100까의 정수이며 복제본 백업 수행의 원하는 우선 순위를 나타냅니다. 사용 가능한 온라인 복제본 집합 중에서 우선 순위가 가장 높은 복제본이 백업 수행 대상으로 선택됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ConnectionModeInPrimaryRole</maml:name><maml:description><maml:para>주 역할에서 가용성 복제본이 연결을 처리할 방법입니다. 유효한 설정은 다음과 같습니다.
</maml:para><maml:para>AllowReadWriteConnections: 읽기/쓰기 연결 허용
</maml:para><maml:para>AllowAllConnections: 모든 연결 허용
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityReplicaConnectionModeInPrimaryRole</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ConnectionModeInSecondaryRole</maml:name><maml:description><maml:para>보조 역할에서 가용성 복제본이 연결을 처리할 방법입니다. 유효한 설정은 다음과 같습니다.
</maml:para><maml:para>AllowNoConnections: 연결 허용 안 함
</maml:para><maml:para>AllowReadIntentConnectionsOnly: 읽기 전용 연결만 허용
</maml:para><maml:para>AllowAllConnections: 모든 연결 허용
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityReplicaConnectionModeInSecondaryRole</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ReadonlyRoutingConnectionUrl</maml:name><maml:description><maml:para>읽기 전용 연결을 위해 복제본으로 라우팅할 때 사용할 포트와 연결 정규화된 도메인 이름(FQDN)입니다. 예를 들면 다음과 같습니다.
</maml:para><maml:para>TCP://DBSERVER8.manufacturing.Adventure-Works.com:7024
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ReadOnlyRoutingList</maml:name><maml:description><maml:para>이 가용성 복제본을 통해 읽기 전용 연결로 리디렉션할 경우 사용할 연결 디렉터의 프로브 순서를 나타내는 복제 서버 이름을 순서대로 나열한 목록입니다. 이 목록은 가용성 복제본이 가용성 그룹의 현재 주 복제본일 경우에 적용됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>SessionTimeout</maml:name><maml:description><maml:para>연결이 실패한 것으로 간주하기 전에 주 복제본과 이 복제본 사이의 응답을 대기하는 시간(초)입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Version</maml:name><maml:description><maml:para>SQL Server 버전을 지정합니다. 이 매개 변수는 AsTemplate이 지정된 경우에만 적용됩니다. 템플릿 개체가 이 버전의 서버에 디자인 모드로 생성됩니다.
</maml:para><maml:para>버전은 원할 경우 정수 또는 문자열로 지정할 수 있습니다. 예: -Version %PRODUCT_MAJOR_VER%, 또는 -Version "%PRODUCT_MAJOR_VER%.0.0"
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">ServerVersion</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AvailabilityMode</maml:name><maml:description><maml:para>복제본이 동기 커밋 모드인지 또는 비동기 커밋 모드인지를 나타냅니다. null일 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityReplicaAvailabilityMode</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>EndpointUrl</maml:name><maml:description><maml:para>데이터베이스 미러링 끝점의 URL입니다. 이 URL은 TCP://system-address:port 형식의 CTP 주소입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>FailoverMode</maml:name><maml:description><maml:para>자동 또는 수동일 수 있습니다. null일 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityReplicaFailoverMode</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>New-SqlAvailabilityReplica</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Name</maml:name><maml:description><maml:para>새 가용성 복제본의 이름입니다. computer\instance 형식을 사용하여 이 이름을 지정합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="3" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>새 복제본이 속할 가용성 그룹의 AvailabilityGroup 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Context</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupPriority</maml:name><maml:description><maml:para>이 옵션은 0부터 100까의 정수이며 복제본 백업 수행의 원하는 우선 순위를 나타냅니다. 사용 가능한 온라인 복제본 집합 중에서 우선 순위가 가장 높은 복제본이 백업 수행 대상으로 선택됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ConnectionModeInPrimaryRole</maml:name><maml:description><maml:para>주 역할에서 가용성 복제본이 연결을 처리할 방법입니다. 유효한 설정은 다음과 같습니다.
</maml:para><maml:para>AllowReadWriteConnections: 읽기/쓰기 연결 허용
</maml:para><maml:para>AllowAllConnections: 모든 연결 허용
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityReplicaConnectionModeInPrimaryRole</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ConnectionModeInSecondaryRole</maml:name><maml:description><maml:para>보조 역할에서 가용성 복제본이 연결을 처리할 방법입니다. 유효한 설정은 다음과 같습니다.
</maml:para><maml:para>AllowNoConnections: 연결 허용 안 함
</maml:para><maml:para>AllowReadIntentConnectionsOnly: 읽기 전용 연결만 허용
</maml:para><maml:para>AllowAllConnections: 모든 연결 허용
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityReplicaConnectionModeInSecondaryRole</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ReadonlyRoutingConnectionUrl</maml:name><maml:description><maml:para>읽기 전용 연결을 위해 복제본으로 라우팅할 때 사용할 포트와 연결 정규화된 도메인 이름(FQDN)입니다. 예를 들면 다음과 같습니다.
</maml:para><maml:para>TCP://DBSERVER8.manufacturing.Adventure-Works.com:7024
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ReadOnlyRoutingList</maml:name><maml:description><maml:para>이 가용성 복제본을 통해 읽기 전용 연결로 리디렉션할 경우 사용할 연결 디렉터의 프로브 순서를 나타내는 복제 서버 이름을 순서대로 나열한 목록입니다. 이 목록은 가용성 복제본이 가용성 그룹의 현재 주 복제본일 경우에 적용됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>SessionTimeout</maml:name><maml:description><maml:para>연결이 실패한 것으로 간주하기 전에 주 복제본과 이 복제본 사이의 응답을 대기하는 시간(초)입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AvailabilityMode</maml:name><maml:description><maml:para>복제본이 동기 커밋 모드인지 또는 비동기 커밋 모드인지를 나타냅니다. null일 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityReplicaAvailabilityMode</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>EndpointUrl</maml:name><maml:description><maml:para>데이터베이스 미러링 끝점의 URL입니다. 이 URL은 TCP://system-address:port 형식의 CTP 주소입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>FailoverMode</maml:name><maml:description><maml:para>자동 또는 수동일 수 있습니다. null일 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityReplicaFailoverMode</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AsTemplate</maml:name><maml:description><maml:para>메모리에 임시 AvailabilityReplica 개체를 만들 새 가용성 복제본의 경로입니다. AsTemplate을 사용하여 새 가용성 그룹에 포함하려는 각각의 새 가용성 복제본을 만듭니다. 그런 다음 New-SqlAvailabilityGroup cmdlet을 실행하고 AvailabilityReplica 매개 변수 값으로 AvailabilityReplica 개체를 지정하여 가용성 그룹을 만듭니다.
</maml:para><maml:para>AsTemplate을 지정하면 InputObject 및 Path 매개 변수가 무시됩니다.
</maml:para><maml:para>AsTemplate을 지정하면 SQL Server 버전을 Version 매개 변수로 전달하거나 현재 세션에 인스턴스에 대한 활성 연결이 있어야 합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>0</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AvailabilityMode</maml:name><maml:description><maml:para>복제본이 동기 커밋 모드인지 또는 비동기 커밋 모드인지를 나타냅니다. null일 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityReplicaAvailabilityMode</command:parameterValue><dev:type><maml:name>AvailabilityReplicaAvailabilityMode</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupPriority</maml:name><maml:description><maml:para>이 옵션은 0부터 100까의 정수이며 복제본 백업 수행의 원하는 우선 순위를 나타냅니다. 사용 가능한 온라인 복제본 집합 중에서 우선 순위가 가장 높은 복제본이 백업 수행 대상으로 선택됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ConnectionModeInPrimaryRole</maml:name><maml:description><maml:para>주 역할에서 가용성 복제본이 연결을 처리할 방법입니다. 유효한 설정은 다음과 같습니다.
</maml:para><maml:para>AllowReadWriteConnections: 읽기/쓰기 연결 허용
</maml:para><maml:para>AllowAllConnections: 모든 연결 허용
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityReplicaConnectionModeInPrimaryRole</command:parameterValue><dev:type><maml:name>AvailabilityReplicaConnectionModeInPrimaryRole</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ConnectionModeInSecondaryRole</maml:name><maml:description><maml:para>보조 역할에서 가용성 복제본이 연결을 처리할 방법입니다. 유효한 설정은 다음과 같습니다.
</maml:para><maml:para>AllowNoConnections: 연결 허용 안 함
</maml:para><maml:para>AllowReadIntentConnectionsOnly: 읽기 전용 연결만 허용
</maml:para><maml:para>AllowAllConnections: 모든 연결 허용
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityReplicaConnectionModeInSecondaryRole</command:parameterValue><dev:type><maml:name>AvailabilityReplicaConnectionModeInSecondaryRole</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>EndpointUrl</maml:name><maml:description><maml:para>데이터베이스 미러링 끝점의 URL입니다. 이 URL은 TCP://system-address:port 형식의 CTP 주소입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>FailoverMode</maml:name><maml:description><maml:para>자동 또는 수동일 수 있습니다. null일 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityReplicaFailoverMode</command:parameterValue><dev:type><maml:name>AvailabilityReplicaFailoverMode</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="3" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>새 복제본이 속할 가용성 그룹의 AvailabilityGroup 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Context</command:parameterValue><dev:type><maml:name>Context</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Name</maml:name><maml:description><maml:para>새 가용성 복제본의 이름입니다. computer\instance 형식을 사용하여 이 이름을 지정합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>가용성 그룹의 경로입니다. 새 복제본은 이 경로에 있는 가용성 그룹에 속합니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ReadonlyRoutingConnectionUrl</maml:name><maml:description><maml:para>읽기 전용 연결을 위해 복제본으로 라우팅할 때 사용할 포트와 연결 정규화된 도메인 이름(FQDN)입니다. 예를 들면 다음과 같습니다.
</maml:para><maml:para>TCP://DBSERVER8.manufacturing.Adventure-Works.com:7024
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ReadOnlyRoutingList</maml:name><maml:description><maml:para>이 가용성 복제본을 통해 읽기 전용 연결로 리디렉션할 경우 사용할 연결 디렉터의 프로브 순서를 나타내는 복제 서버 이름을 순서대로 나열한 목록입니다. 이 목록은 가용성 복제본이 가용성 그룹의 현재 주 복제본일 경우에 적용됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>SessionTimeout</maml:name><maml:description><maml:para>연결이 실패한 것으로 간주하기 전에 주 복제본과 이 복제본 사이의 응답을 대기하는 시간(초)입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Version</maml:name><maml:description><maml:para>SQL Server 버전을 지정합니다. 이 매개 변수는 AsTemplate이 지정된 경우에만 적용됩니다. 템플릿 개체가 이 버전의 서버에 디자인 모드로 생성됩니다.
</maml:para><maml:para>버전은 원할 경우 정수 또는 문자열로 지정할 수 있습니다. 예: -Version %PRODUCT_MAJOR_VER%, 또는 -Version "%PRODUCT_MAJOR_VER%.0.0"
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">ServerVersion</command:parameterValue><dev:type><maml:name>ServerVersion</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>Microsoft.SqlServer.Management.Smo.AvailabilityGroup</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>
 
복제본의 가용성 그룹을 지정합니다.
 
 
</maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>Microsoft.SqlServer.Management.Smo.AvailabilityReplica</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>
 
새로 만든 가용성 복제본이 들어 있는 파워 셸 개체입니다.
 
 
</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>
  
-------------------------- EXAMPLE 1 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;$serverObject = (Get-Item SQLSERVER:\Sql\PrimaryServer\InstanceName)
$serverVersion = $serverObject.Version
$endpointURL = "TCP://PrimaryServerName.domain.com:5022"
$failoverMode = "Automatic"
$availabilityMode = "SynchronousCommit"
New-SqlAvailabilityReplica -Name PrimaryServer\Instance -EndpointUrl $endpointURL -FailoverMode $failoverMode -AvailabilityMode $availabilityMode -AsTemplate -Version $serverVersion
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 예에서는 가용성 복제본의 메모리 내 표현을 만듭니다. 변경 내용이 서버로 커밋되지 않습니다. 이 복제본은 New-SqlAvailabilityGroup cmdlet의 AvailabilityReplica 매개 변수에 전달해야 합니다. 이 복제본은 지정된 URL에 있는 데이터베이스 미러링 끝점을 사용하여 가용성 그룹의 다른 복제본과 통신합니다. 이 복제본은 자동 장애 조치(Failover) 및 비동기 커밋 가용성 모드를 지원합니다. 메모리 내 표현을 생성하려면 -AsTemplate 및 -Version 매개 변수가 필요합니다. -Version 매개 변수는 이 복제본을 호스팅할 서버 인스턴스 버전을 지정합니다. 버전 번호는 11이어야 합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
  
-------------------------- EXAMPLE 2 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;$serverObject = (Get-Item SQLSERVER:\Sql\PrimaryServer\InstanceName)
$serverVersion = $serverObject.Version
$endpointURL = "TCP://PrimaryServerName.domain.com:5022"
$failoverMode = "Manual"
$availabilityMode = "AsynchronousCommit"
New-SqlAvailabilityReplica -Name SecondaryServer\Instance -EndpointUrl $endpointURL -FailoverMode $failoverMode -AvailabilityMode $availabilityMode -AsTemplate -Version $serverVersion
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 가용성 복제본의 메모리 내 표현을 만듭니다. 변경 내용이 서버로 커밋되지 않습니다. 이 복제본은 New-SqlAvailabilityGroup cmdlet의 AvailabilityReplica 매개 변수에 전달해야 합니다. 이 복제본은 지정된 URL에 있는 끝점을 사용하여 가용성 그룹의 다른 복제본과 통신합니다. 이 복제본은 수동 장애 조치(Failover) 및 비동기 커밋 가용성 모드를 지원합니다. 메모리 내 표현을 생성하려면 -AsTemplate 및 -Version 매개 변수가 필요합니다. -Version 매개 변수는 이 복제본을 호스팅할 서버 인스턴스 버전을 지정합니다. 버전 번호는 11이어야 합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
  
-------------------------- EXAMPLE 3 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;$agPath = "SQLSERVER:\Sql\PrimaryServer\InstanceName\AvailabilityGroups\MyAg"
$endpointURL = "TCP://PrimaryServerName.domain.com:5022"
$failoverMode = "Manual"
$availabilityMode = "AsynchronousCommit"
$secondaryReadMode = "AllowAllConnections"
New-SqlAvailabilityReplica -Name SecondaryServer\Instance -EndpointUrl $endpointURL -FailoverMode $failoverMode -AvailabilityMode $availabilityMode -ConnectionModeInSecondaryRole $secondaryReadMode -Path $agPath
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 예에서는 'MyAg'라는 기존 가용성 그룹에 가용성 복제본을 추가합니다. 이 복제본은 수동 장애 조치(Failover) 및 비동기 커밋 가용성 모드를 지원합니다. 이 복제본은 이 보조 역할에서 읽기 액세스 연결을 지원하므로 읽기 전용 프로세싱을 이 복제본으로 오프로드할 수 있습니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>SQL Server Books Online: Specifying the Endpoint URL for an Availability Replica (SQL Server)</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>New-SqlBackupEncryptionOption</command:name><maml:description><maml:para>Backup-SqlDatabase cmdlet 또는 Set-SqlSmartAdmin cmdlet에 대한 암호화 옵션을 정의합니다.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>New</command:verb><command:noun>SqlBackupEncryptionOption</command:noun><dev:version /></command:details><maml:description><maml:para></maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>New-SqlBackupEncryptionOption</maml:name><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Algorithm</maml:name><maml:description><maml:para>암호화 알고리즘입니다. 가능한 값은 AES128, AES192, AES256 및 TripleDes입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupEncryptionAlgorithm</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>EncryptorName</maml:name><maml:description><maml:para>서버 인증서 또는 서버 비대칭 키의 이름입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>EncryptorType</maml:name><maml:description><maml:para>암호기 유형입니다. 가능한 값은 ServerCertificate 및 ServerAsymmetricKey입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupEncryptorType</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoEncryption</maml:name><maml:description><maml:para>암호화를 사용하지 않도록 지정합니다. 이 매개 변수는 다른 매개 변수와 함께 사용할 수 없습니다.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Algorithm</maml:name><maml:description><maml:para>암호화 알고리즘입니다. 가능한 값은 AES128, AES192, AES256 및 TripleDes입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupEncryptionAlgorithm</command:parameterValue><dev:type><maml:name>BackupEncryptionAlgorithm</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>EncryptorName</maml:name><maml:description><maml:para>서버 인증서 또는 서버 비대칭 키의 이름입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>EncryptorType</maml:name><maml:description><maml:para>암호기 유형입니다. 가능한 값은 ServerCertificate 및 ServerAsymmetricKey입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupEncryptorType</command:parameterValue><dev:type><maml:name>BackupEncryptorType</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoEncryption</maml:name><maml:description><maml:para>암호화를 사용하지 않도록 지정합니다. 이 매개 변수는 다른 매개 변수와 함께 사용할 수 없습니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>Microsoft.SqlServer.Management.Smo.BackupEncryptionOptions</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>Backup-SqlDatabase 및 Set-SqlSmartAdmin의 –EncryptionOption 매개 변수에 대한 입력으로 사용됩니다.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>
-------------------------- EXAMPLE 1 --------------------------
                       </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;$encryptionOption = New-SqlBackupEncryptionOption -Algorithm Aes256 -EncryptorType ServerCertificate -EncryptorName "BackupCert"
</dev:code><dev:code>C:\PS&gt;Backup-SqlDatabase -ServerInstance . -Database "db1" -BackupFile "db1.bak" -CompressionOption On -EncryptionOption $encryptionOption
 
</dev:code><dev:remarks><maml:para>이 예에서는 암호화 옵션을 만들고 Backup-SqlDatabase에서 매개 변수 값으로 사용하여 암호화된 백업을 만듭니다.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Online Version:</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>New-SqlCredential</command:name><maml:description><maml:para>새 SQL Server 자격 증명 개체를 만듭니다.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>New</command:verb><command:noun>SqlCredential</command:noun><dev:version /></command:details><maml:description><maml:para>New-SqlCredential cmdlet은 새 SQL Server 자격 증명 개체를 만듭니다. SQL Server 자격 증명 개체는 인증 정보를 저장하는 데 사용됩니다. SQL Server 자격 증명은 Windows Azure Blob 저장소 서비스로 백업하거나 복원할 때 필요하며 Windows Azure 저장소 계정 이름 및 액세스 키 정보를 저장하는 데 사용됩니다.
</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>New-SqlCredential</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Name</maml:name><maml:description><maml:para>자격 증명의 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>작업을 실행하려는 SQL Server의 인스턴스에 대한 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 현재 작업 위치를 사용합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ProviderName</maml:name><maml:description><maml:para>암호화 공급자 이름입니다. EKM(Enterprise Key Management) 공급자의 이름을 지정합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Secret</maml:name><maml:description><maml:para>사용자 또는 계정의 암호입니다. Windows Azure 저장소 서비스 인증의 경우 암호는 저장소 계정 액세스 키 값입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">SecureString</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Identity</maml:name><maml:description><maml:para>사용자 또는 계정의 이름입니다. Windows Azure 저장소 서비스 인증의 경우 Windows Azure 저장소 계정의 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>New-SqlCredential</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Name</maml:name><maml:description><maml:para>자격 증명의 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="3" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>자격 증명을 만들어야 하는 Server 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Context</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ProviderName</maml:name><maml:description><maml:para>암호화 공급자 이름입니다. EKM(Enterprise Key Management) 공급자의 이름을 지정합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Secret</maml:name><maml:description><maml:para>사용자 또는 계정의 암호입니다. Windows Azure 저장소 서비스 인증의 경우 암호는 저장소 계정 액세스 키 값입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">SecureString</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Identity</maml:name><maml:description><maml:para>사용자 또는 계정의 이름입니다. Windows Azure 저장소 서비스 인증의 경우 Windows Azure 저장소 계정의 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Identity</maml:name><maml:description><maml:para>사용자 또는 계정의 이름입니다. Windows Azure 저장소 서비스 인증의 경우 Windows Azure 저장소 계정의 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="3" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>자격 증명을 만들어야 하는 Server 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Context</command:parameterValue><dev:type><maml:name>Context</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Name</maml:name><maml:description><maml:para>자격 증명의 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>작업을 실행하려는 SQL Server의 인스턴스에 대한 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 현재 작업 위치를 사용합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ProviderName</maml:name><maml:description><maml:para>암호화 공급자 이름입니다. EKM(Enterprise Key Management) 공급자의 이름을 지정합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Secret</maml:name><maml:description><maml:para>사용자 또는 계정의 암호입니다. Windows Azure 저장소 서비스 인증의 경우 암호는 저장소 계정 액세스 키 값입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">SecureString</command:parameterValue><dev:type><maml:name>SecureString</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>
 
-------------------------- EXAMPLE 1 --------------------------
 
 
                      </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt; cd SQLServer:\SQL\Computer\Instance
$storageAccount = “myWindowsAzureStorageAccount”
$storageKey = “&lt;storage account access key value&gt;”
New-SqlCredential – name “mysqlcredential” –Identity $storageAccount –secret $storageKey
 
 
</dev:code><dev:remarks><maml:para>이 명령은 SQL Server의 현재 인스턴스에서 SQL 자격 증명 “mysqlcredential”을 만듭니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
 
-------------------------- EXAMPLE 2 --------------------------
 
 
                      </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;#cd to computer level
cd sqlserver:\sql\computer
$storageAccount = “myWindowsAzureStorageAccount”
$storageKey = “&lt;storage account access key value&gt;”
$secureString = convertto-securestring $storageKey -asplaintext -force
# get the list of instances
$instances = Get-childitem
#pipe the instances to new-sqlcredentail cmdlet to create SQL credential
$instances | new-sqlcredential -Name “mysqlcredential” -Identity storageAccount -Secret $secureString
 
 
 
</dev:code><dev:remarks><maml:para>이 명령은 SQL Server의 모든 인스턴스에서 SQL 자격 증명 “mysqlcredential”을 만듭니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>New-SqlHADREndpoint</command:name><maml:description><maml:para>SQL Server 인스턴스에 데이터베이스 미러링 끝점을 만듭니다.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>New</command:verb><command:noun>SqlHADREndpoint</command:noun><dev:version /></command:details><maml:description><maml:para>New-SqlHadrndpoint cmdlet은 지정된 SQL Server 인스턴스에 데이터베이스 미러링 끝점을 만듭니다. 이 끝점은 모든 가용성 그룹에 대한 가용성 복제본을 호스팅하는 모든 서버 인스턴스에 필요합니다. 각 서버 인스턴스에는 하나의 데이터베이스 미러링 끝점이 있어야 합니다. 서버 인스턴스에 이미 데이터베이스 미러링 끝점이 있는 경우 기존 끝점을 사용하십시오.
</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>New-SqlHADREndpoint</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Name</maml:name><maml:description><maml:para>만들 끝점의 이름입니다. 이 항목은 필수 매개 변수입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>끝점을 만들 SQL Server 인스턴스의 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AuthenticationOrder</maml:name><maml:description><maml:para>끝점이 사용하는 인증의 순서 및 유형입니다. 옵션으로 Certificate, CertificateKerberos , CertificateNegotiate, CertificateNtlm, Kerberos, KerberosCertificate, Negotiate, NegotiateCertificate, Ntlm 및 NtlmCertificate이 있습니다. 지정된 옵션에서 인증서를 요청할 경우 -Certificate 매개 변수도 설정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">EndpointAuthenticationOrder</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Certificate</maml:name><maml:description><maml:para>연결을 인증하기 위해 끝점이 사용해야 할 인증서의 이름입니다. 먼 끝점에는 지정된 인증서의 개인 키와 일치하는 공개 키를 가진 인증서가 있어야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Encryption</maml:name><maml:description><maml:para>끝점의 암호화 옵션입니다. 옵션으로는 Disabled, Supported 또는 Required가 있습니다. Required가 기본값입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">EndpointEncryption</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>EncryptionAlgorithm</maml:name><maml:description><maml:para>끝점에서 사용하는 암호화 형식입니다. 옵션으로 Aes, AesRC4, None, RC4 및 RC4Aes가 있습니다. 기본적으로 끝점은 Aes 암호화를 사용합니다.
</maml:para><maml:para>참고: RC4 알고리즘은 이전 버전과의 호환성을 위해서만 지원됩니다. 데이터베이스의 호환성 수준이 90 또는 100인 경우 새 자료는 RC4 또는 RC4_128로만 암호화할 수 있습니다. 이 옵션은 사용하지 않는 것이 좋습니다. 대신 AES 알고리즘 중 하나와 같은 새 알고리즘을 사용하십시오.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">EndpointEncryptionAlgorithm</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>IpAddress</maml:name><maml:description><maml:para>끝점이 수신하는 IP 주소입니다. 기본값은 ALL이며, 이는 수신기가 모든 유효한 IP 주소에 대한 연결을 허용함을 나타냅니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">IPAddress</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Owner</maml:name><maml:description><maml:para>끝점 소유자의 로그인입니다. 기본적으로 이는 현재 로그인입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Port</maml:name><maml:description><maml:para>끝점이 연결을 수신할 TCP 포트입니다. 기본 포트는 5022입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>New-SqlHADREndpoint</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Name</maml:name><maml:description><maml:para>만들 끝점의 이름입니다. 이 항목은 필수 매개 변수입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="3" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>끝점을 만들어야 할 SQL Server 인스턴스의 Server 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Context</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AuthenticationOrder</maml:name><maml:description><maml:para>끝점이 사용하는 인증의 순서 및 유형입니다. 옵션으로 Certificate, CertificateKerberos , CertificateNegotiate, CertificateNtlm, Kerberos, KerberosCertificate, Negotiate, NegotiateCertificate, Ntlm 및 NtlmCertificate이 있습니다. 지정된 옵션에서 인증서를 요청할 경우 -Certificate 매개 변수도 설정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">EndpointAuthenticationOrder</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Certificate</maml:name><maml:description><maml:para>연결을 인증하기 위해 끝점이 사용해야 할 인증서의 이름입니다. 먼 끝점에는 지정된 인증서의 개인 키와 일치하는 공개 키를 가진 인증서가 있어야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Encryption</maml:name><maml:description><maml:para>끝점의 암호화 옵션입니다. 옵션으로는 Disabled, Supported 또는 Required가 있습니다. Required가 기본값입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">EndpointEncryption</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>EncryptionAlgorithm</maml:name><maml:description><maml:para>끝점에서 사용하는 암호화 형식입니다. 옵션으로 Aes, AesRC4, None, RC4 및 RC4Aes가 있습니다. 기본적으로 끝점은 Aes 암호화를 사용합니다.
</maml:para><maml:para>참고: RC4 알고리즘은 이전 버전과의 호환성을 위해서만 지원됩니다. 데이터베이스의 호환성 수준이 90 또는 100인 경우 새 자료는 RC4 또는 RC4_128로만 암호화할 수 있습니다. 이 옵션은 사용하지 않는 것이 좋습니다. 대신 AES 알고리즘 중 하나와 같은 새 알고리즘을 사용하십시오.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">EndpointEncryptionAlgorithm</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>IpAddress</maml:name><maml:description><maml:para>끝점이 수신하는 IP 주소입니다. 기본값은 ALL이며, 이는 수신기가 모든 유효한 IP 주소에 대한 연결을 허용함을 나타냅니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">IPAddress</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Owner</maml:name><maml:description><maml:para>끝점 소유자의 로그인입니다. 기본적으로 이는 현재 로그인입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Port</maml:name><maml:description><maml:para>끝점이 연결을 수신할 TCP 포트입니다. 기본 포트는 5022입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AuthenticationOrder</maml:name><maml:description><maml:para>끝점이 사용하는 인증의 순서 및 유형입니다. 옵션으로 Certificate, CertificateKerberos , CertificateNegotiate, CertificateNtlm, Kerberos, KerberosCertificate, Negotiate, NegotiateCertificate, Ntlm 및 NtlmCertificate이 있습니다. 지정된 옵션에서 인증서를 요청할 경우 -Certificate 매개 변수도 설정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">EndpointAuthenticationOrder</command:parameterValue><dev:type><maml:name>EndpointAuthenticationOrder</maml:name><maml:uri /></dev:type><dev:defaultValue>SMO.EndpointAuthenticationOrder.Negotiate</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Certificate</maml:name><maml:description><maml:para>연결을 인증하기 위해 끝점이 사용해야 할 인증서의 이름입니다. 먼 끝점에는 지정된 인증서의 개인 키와 일치하는 공개 키를 가진 인증서가 있어야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Encryption</maml:name><maml:description><maml:para>끝점의 암호화 옵션입니다. 옵션으로는 Disabled, Supported 또는 Required가 있습니다. Required가 기본값입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">EndpointEncryption</command:parameterValue><dev:type><maml:name>EndpointEncryption</maml:name><maml:uri /></dev:type><dev:defaultValue>SMO.EndpointAuthentication.Required</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>EncryptionAlgorithm</maml:name><maml:description><maml:para>끝점에서 사용하는 암호화 형식입니다. 옵션으로 Aes, AesRC4, None, RC4 및 RC4Aes가 있습니다. 기본적으로 끝점은 Aes 암호화를 사용합니다.
</maml:para><maml:para>참고: RC4 알고리즘은 이전 버전과의 호환성을 위해서만 지원됩니다. 데이터베이스의 호환성 수준이 90 또는 100인 경우 새 자료는 RC4 또는 RC4_128로만 암호화할 수 있습니다. 이 옵션은 사용하지 않는 것이 좋습니다. 대신 AES 알고리즘 중 하나와 같은 새 알고리즘을 사용하십시오.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">EndpointEncryptionAlgorithm</command:parameterValue><dev:type><maml:name>EndpointEncryptionAlgorithm</maml:name><maml:uri /></dev:type><dev:defaultValue>RC4</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="3" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>끝점을 만들어야 할 SQL Server 인스턴스의 Server 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Context</command:parameterValue><dev:type><maml:name>Context</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>IpAddress</maml:name><maml:description><maml:para>끝점이 수신하는 IP 주소입니다. 기본값은 ALL이며, 이는 수신기가 모든 유효한 IP 주소에 대한 연결을 허용함을 나타냅니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">IPAddress</command:parameterValue><dev:type><maml:name>IPAddress</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Name</maml:name><maml:description><maml:para>만들 끝점의 이름입니다. 이 항목은 필수 매개 변수입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Owner</maml:name><maml:description><maml:para>끝점 소유자의 로그인입니다. 기본적으로 이는 현재 로그인입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>끝점을 만들 SQL Server 인스턴스의 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Port</maml:name><maml:description><maml:para>끝점이 연결을 수신할 TCP 포트입니다. 기본 포트는 5022입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue>5022</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>SMO.Server</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>
 
이 매개 변수는 끝점을 만들 서버 인스턴스를 지정합니다.
 
 
</maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>SMO.Endpoint</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>
  
-------------------------- EXAMPLE 1 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;New-SqlHADREndpoint -Path SQLSERVER:\Sql\Computer\Instance -Name MyEndpoint
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 지정된 경로에 있는 서버 인스턴스에 'MyEndpoint'라는 데이터베이스 미러링 끝점을 만듭니다. 이 끝점은 기본 포트인 5022를 사용합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
  
-------------------------- EXAMPLE 2 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;New-SqlHADREndpoint -Path SQLSERVER:\Sql\Computer\Instance -Name EndpointName -Port 4022 -EncryptionAlgorithm 'Aes' -Encryption 'Required'
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 지정된 경로에 있는 서버 인스턴스에 'MyEndpoint'라는 데이터베이스 미러링 끝점을 만듭니다. 이 끝점은 포인트 4022에서 수신합니다. 이 끝점은 암호화에 AES 알고리즘을 사용하며 연결 시 암호화를 사용해야 합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
  
-------------------------- EXAMPLE 3 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;New-SqlHADREndpoint -Path SQLSERVER:\Sql\Computer\Instance -Name EndpointName -AuthenticationOrder 'Certificate' -Certificate 'MyCertificate'
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 지정된 경로에 있는 서버 인스턴스에 'MyEndpoint'라는 데이터베이스 미러링 끝점을 만듭니다. 이 끝점은 연결을 인증하기 위해 'MyCertificate'이라는 인증서를 사용합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
  
-------------------------- EXAMPLE 4 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;New-SqlHADREndpoint -Path SQLSERVER:\Sql\Computer\Instance -Name MyEndpoint -Script
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 지정된 경로에 있는 서버 인스턴스에 'MyEndpoint'라는 데이터베이스 미러링 끝점을 만드는 Transact-SQL 스크립트를 출력합니다. 이 명령으로 끝점이 실제로 만들어지는 것은 아닙니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText></maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Remove-SqlAvailabilityDatabase</command:name><maml:description><maml:para>InputObject 또는 Path 매개 변수로 지정된 가용성 데이터베이스를 해당 가용성 그룹에서 제거합니다. </maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Remove</command:verb><command:noun>SqlAvailabilityDatabase</command:noun><dev:version /></command:details><maml:description><maml:para>Remove-SqlAvailabilityDatabase cmdlet은 InputObject 또는 Path 매개 변수로 지정된 가용성 데이터베이스를 해당 가용성 그룹에서 제거합니다. 주 복제본을 호스팅하는 서버 인스턴스에서 실행하는 경우 이 cmdlet은 가용성 그룹에서 주 데이터베이스와 해당 보조 데이터베이스를 모두 제거합니다. 보조 복제본을 호스팅하는 서버 인스턴스에서 실행하는 경우 이 cmdlet은 가용성 그룹에서 로컬 보조 데이터베이스를 제거합니다. 이 보조 데이터베이스는 더 이상 가용성 그룹에 조인되지 않지만 데이터베이스의 다른 사본이 계속 조인됩니다.
</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Remove-SqlAvailabilityDatabase</maml:name><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>가용성 데이터베이스의 경로입니다. 이 항목은 필수 매개 변수입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Remove-SqlAvailabilityDatabase</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>제거할 가용성 데이터베이스의 AwailabilityDatabase 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Target</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>제거할 가용성 데이터베이스의 AwailabilityDatabase 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Target</command:parameterValue><dev:type><maml:name>Target</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>가용성 데이터베이스의 경로입니다. 이 항목은 필수 매개 변수입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>Microsoft.SqlServer.Management.Smo.AvailabilityDatabase</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>
 
제거할 가용성 데이터베이스를 지정합니다.
 
 
</maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>
  
-------------------------- EXAMPLE 1 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Remove-SqlAvailabilityDatabase -Path SQLSERVER:\Sql\PrimaryComputer\InstanceName\AvailabilityGroups\MyAg\AvailabilityDatabases\MyDatabase
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'MyAg'라는 가용성 그룹에서 'MyDatabase'라는 가용성 데이터베이스를 제거합니다. 명령이 주 복제본을 호스팅하는 서버 인스턴스에서 실행되므로 주 데이터베이스와 모든 보조 데이터베이스가 모두 가용성 그룹에서 제거됩니다. 보조 복제본에서 더 이상 이 데이터베이스에 대한 데이터 동기화가 발생하지 않습니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
  
-------------------------- EXAMPLE 2 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Get-ChildItem SQLSERVER:\Sql\PrimaryComputer\InstanceName\AvailabilityGroups\MyAg\AvailabilityDatabases | Remove-SqlAvailabilityDatabase
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'MyAg'라는 가용성 그룹에서 모든 가용성 데이터베이스를 제거합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
  
-------------------------- EXAMPLE 3 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Remove-SqlAvailabilityDatabase -Path SQLSERVER:\Sql\SecondaryComputer\InstanceName\AvailabilityGroups\MyAg\AvailabilityDatabases\MyDatabase
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'SecondaryComputer\Instance'라는 서버 인스턴스가 호스팅하는 보조 복제본에서 'MyDatabase' 보조 데이터베이스를 제거합니다. 제거된 보조 데이터베이스에 대한 데이터 동기화가 중단됩니다. 이 명령은 주 데이터베이스 또는 다른 보조 데이터베이스에 영향을 주지 않습니다.
</maml:para><maml:para>참고: 이 보조 데이터베이스에서 데이터 동기화를 다시 시작하려면 같은 서버 인스턴스에서 Add-SqlAvailabilityDatabase cmdlet을 사용하여 가용성 그룹에 다시 조인합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
  
-------------------------- EXAMPLE 4 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Remove-SqlAvailabilityDatabase -Path SQLSERVER:\Sql\PrimaryComputer\InstanceName\AvailabilityGroups\MyAg\AvailabilityDatabases\MyDatabase -Script
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'MyAg' 가용성 그룹에서 'MyDatabase' 가용성 데이터베이스를 제거하는 Transact-SQL 스크립트를 출력합니다. 이 명령으로 가용성 데이터베이스가 실제로 제거되는 것은 아닙니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText></maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Remove-SqlAvailabilityGroup</command:name><maml:description><maml:para>InputObject 또는 Path 매개 변수에서 지정한 가용성 그룹을 제거합니다.
 
 
 
 
 
 
 
                    </maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Remove</command:verb><command:noun>SqlAvailabilityGroup</command:noun><dev:version /></command:details><maml:description><maml:para>Remove-SqlAvailabilityGroup cmdlet은 InputObject 또는 Path 매개 변수에서 지정한 가용성 그룹을 제거합니다. 이 cmdlet은 부분적으로 생성된 가용성 그룹을 제거할 수 있습니다. 이 cmdlet은 가용성 그룹에 대해 올바른 보안 자격 증명을 소유한 WSFC 노드에서 AlwaysOn 가용성 그룹에 사용하도록 설정된 모든 SQL Server 인스턴스에서 실행할 수 있습니다. 이 cmdlet이 실행되는 인스턴스가 AlwaysOn 가용성 그룹에 대해 사용하도록 설정되지 않았거나 Path 매개 변수에서 지정한 가용성 그룹이 없는 경우 오류가 throw됩니다.
</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Remove-SqlAvailabilityGroup</maml:name><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>가용성 그룹의 경로입니다. 이 항목은 필수 매개 변수입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Remove-SqlAvailabilityGroup</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>제거할 가용성 그룹의 AwailabilityGroup 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Target</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>제거할 가용성 그룹의 AwailabilityGroup 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Target</command:parameterValue><dev:type><maml:name>Target</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>가용성 그룹의 경로입니다. 이 항목은 필수 매개 변수입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>Microsoft.SqlServer.Management.Smo.AvailabilityGroup</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>
 
 
 
                -------------------------- EXAMPLE 1 --------------------------
 
 
 
            </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Remove-SqlAvailabilityGroup -Path SQLSERVER:\Sql\Computer\Instance\AvailabilityGroups\MyAg
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'MyAg'라는 가용성 그룹을 제거합니다. 이 명령은 가용성 그룹에 대한 가용성 복제본을 호스팅하는 모든 서버 인스턴스에서 실행할 수 있습니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
 
 
 
                -------------------------- EXAMPLE 2 --------------------------
 
 
 
            </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Get-ChildItem SQLSERVER:\Sql\Computer\Instance\AvailabilityGroups | Remove-SqlAvailabilityGroup
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'Computer\Instance'라는 서버 인스턴스가 호스팅하는 가용성 복제본과 함께 모든 가용성 그룹을 제거합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
 
 
 
                -------------------------- EXAMPLE 3 --------------------------
 
 
 
            </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Remove-SqlAvailabilityGroup -Path SQLSERVER:\Sql\Computer\Instance\AvailabilityGroups\MyAg -Script
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'MyAg'라는 가용성 그룹을 제거하는 Transact-SQL 스크립트를 출력합니다. 이 명령으로 가용성 그룹이 실제로 제거되는 것은 아닙니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>SQL Server Books Online: DROP AVAILABILITY GROUP (Transact-SQL)</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Remove-SqlAvailabilityReplica</command:name><maml:description><maml:para>InputObject 또는 Path 매개 변수에서 지정한 보조 가용성 복제본을 제거합니다. </maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Remove</command:verb><command:noun>SqlAvailabilityReplica</command:noun><dev:version /></command:details><maml:description><maml:para>Remove-SqlAvailabilityGroup cmdlet은 InputObject 또는 Path 매개 변수에서 지정한 보조 복제본을 제거합니다. 이 cmdlet은 주 복제본을 호스팅하는 서버 인스턴스에서만 실행할 수 있습니다.
</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Remove-SqlAvailabilityReplica</maml:name><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>가용성 복제본의 경로입니다. 이 항목은 필수 매개 변수입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Remove-SqlAvailabilityReplica</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>제거할 복제본의 AvailabilityReplica 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Target</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>제거할 복제본의 AvailabilityReplica 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Target</command:parameterValue><dev:type><maml:name>Target</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>가용성 복제본의 경로입니다. 이 항목은 필수 매개 변수입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>Microsoft.SqlServer.Management.Smo.AvailabilityReplica</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>
 
제거할 가용성 복제본입니다.
 
 
</maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>
  
-------------------------- EXAMPLE 1 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Remove-SqlAvailabilityReplica -Path SQLSERVER:\SQL\PrimaryServer\InstanceName\AvailabilityGroups\MyAg\AvailabilityReplicas\MyReplica
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'MyAg'라는 가용성 그룹에서 'MyReplica'라는 가용성 복제본을 제거합니다. 이 명령은 가용성 그룹의 주 복제본을 호스팅하는 서버 인스턴스에서 실행해야 합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
  
-------------------------- EXAMPLE 2 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Remove-SqlAvailabilityReplica -Path SQLSERVER:\SQL\PrimaryServer\InstanceName\AvailabilityGroups\MyAg\AvailabilityReplicas\MyReplica -Script
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'MyAg'라는 가용성 그룹에서 'MyReplica'라는 가용성 복제본을 제거하는 Transact-SQL 스크립트를 출력합니다. 이 명령으로 복제본이 실제로 제거되는 것은 아닙니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>SQL Server Books Online: Deleting an Availability Group (SQL Server)</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Remove-SqlCredential</command:name><maml:description><maml:para>SQL 자격 증명 개체를 삭제합니다.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Remove</command:verb><command:noun>SqlCredential</command:noun><dev:version /></command:details><maml:description><maml:para>Remove-SqlCredential cmdlet은 SQL Server 자격 증명 개체를 삭제합니다. 이 cmdlet은 다음의 두 가지 작업 모드를 지원합니다.
 
1. –path 매개 변수를 사용하는 자격 증명 이름을 비롯한 자격 증명의 경로 또는 위치 지정
 
2. –InputObject 매개 변수를 사용하여 개체에 대한 Smo.Credential 개체를 전달
</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Remove-SqlCredential</maml:name><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>이 작업을 수행하려는 자격 증명에 대한 경로입니다. 예를 들면 다음과 같습니다. SQLSERVER:\SQL\Computer\Instance\Credentials\Credential
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Remove-SqlCredential</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>입력 자격 증명 개체입니다. 이 개체는 Get-SqlCredential cmdlet을 사용하여 검색할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Target</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>입력 자격 증명 개체입니다. 이 개체는 Get-SqlCredential cmdlet을 사용하여 검색할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Target</command:parameterValue><dev:type><maml:name>Target</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>이 작업을 수행하려는 자격 증명에 대한 경로입니다. 예를 들면 다음과 같습니다. SQLSERVER:\SQL\Computer\Instance\Credentials\Credential
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>
 
-------------------------- EXAMPLE 1 --------------------------
 
 
                      </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Remove-SqlCredential -Path SQLSERVER:\SQL\Computer\Instance\Credentials\MySqlCredential
 
 
</dev:code><dev:remarks><maml:para>이 명령은 –path 매개 변수에 지정된 경로를 사용하여 SQL 자격 증명 ‘MySqlCredential’을 삭제합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
 
-------------------------- EXAMPLE 2 --------------------------
 
 
                      </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;The command retrieves the credential object from the Get-Credential cmdlet and then pipes it to the Remove-Sql Credential cmdlet to delete the SQL Credential ‘MySqlCredential’.
PS C:\&gt;$cred = Get-SqlCredential -Name MySqlCredential
$cred | Remove-SqlCredential
 
 
</dev:code><dev:remarks></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Remove-SqlFirewallRule</command:name><maml:description><maml:para>특정 SQL Server 인스턴스에 대한 연결을 허용하는 Windows 방화벽 규칙을 사용하지 않도록 설정합니다.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Remove</command:verb><command:noun>SqlFirewallRule</command:noun><dev:version /></command:details><maml:description><maml:para>특정 SQL Server 인스턴스에 대한 연결을 허용하는 Windows 방화벽 규칙을 사용하지 않도록 설정합니다.</maml:para><maml:para>SQL Server 클라우드 어댑터가 SQL Server 인스턴스를 호스팅하는 컴퓨터에서 실행되고 있어야 하며 액세스 가능해야 합니다.</maml:para><maml:para>이 cmdlet은 다음과 같은 작업 모드를 지원합니다.</maml:para><maml:para>1. 인스턴스 PowerShell 경로 지정</maml:para><maml:para>2. 서버 개체 지정</maml:para><maml:para>3. 대상 SQL Server 인스턴스의 ServerInstance 지정</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Remove-SqlFirewallRule</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases=""><maml:name>Credential</maml:name><maml:description><maml:para>대상 컴퓨터에서 Windows 관리자 자격 증명을 사용하여 사용자 계정을 지정합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AcceptSelfSignedCertificate</maml:name><maml:description><maml:para>이 cmdlet이 사용자에게 확인 메시지를 표시하지 않고 대상 컴퓨터의 자체 서명된 SQL Server 클라우드 어댑터 인증서를 자동으로 적용하도록 합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ManagementPublicPort</maml:name><maml:description><maml:para>대상 컴퓨터의 공용 관리 포트입니다. 대상 컴퓨터의 포트가 직접 액세스 가능하지는 않지만 끝점을 통해 노출되는 경우, 즉 다른 포트에 연결해야 하는 경우에 이 매개 변수를 사용해야 합니다.</maml:para><maml:para>SQL Server 클라우드 어댑터는 이 포트에서 액세스 가능해야 합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>작업을 실행할 SQL Server 인스턴스의 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RetryTimeout</maml:name><maml:description><maml:para>대상 서버에서 명령을 다시 시도하는 기간입니다. 이 제한 시간이 만료되면 다시 시도되지 않습니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Remove-SqlFirewallRule</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases=""><maml:name>Credential</maml:name><maml:description><maml:para>대상 컴퓨터에서 Windows 관리자 자격 증명을 사용하여 사용자 계정을 지정합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AcceptSelfSignedCertificate</maml:name><maml:description><maml:para>이 cmdlet이 사용자에게 확인 메시지를 표시하지 않고 대상 컴퓨터의 자체 서명된 SQL Server 클라우드 어댑터 인증서를 자동으로 적용하도록 합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ManagementPublicPort</maml:name><maml:description><maml:para>대상 컴퓨터의 공용 관리 포트입니다. 대상 컴퓨터의 포트가 직접 액세스 가능하지는 않지만 끝점을 통해 노출되는 경우, 즉 다른 포트에 연결해야 하는 경우에 이 매개 변수를 사용해야 합니다.</maml:para><maml:para>SQL Server 클라우드 어댑터는 이 포트에서 액세스 가능해야 합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RetryTimeout</maml:name><maml:description><maml:para>대상 서버에서 명령을 다시 시도하는 기간입니다. 이 제한 시간이 만료되면 다시 시도되지 않습니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="named" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>대상 인스턴스의 서버 개체입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="true">Server[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Remove-SqlFirewallRule</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases=""><maml:name>Credential</maml:name><maml:description><maml:para>대상 컴퓨터에서 Windows 관리자 자격 증명을 사용하여 사용자 계정을 지정합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AcceptSelfSignedCertificate</maml:name><maml:description><maml:para>이 cmdlet이 사용자에게 확인 메시지를 표시하지 않고 대상 컴퓨터의 자체 서명된 SQL Server 클라우드 어댑터 인증서를 자동으로 적용하도록 합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ManagementPublicPort</maml:name><maml:description><maml:para>대상 컴퓨터의 공용 관리 포트입니다. 대상 컴퓨터의 포트가 직접 액세스 가능하지는 않지만 끝점을 통해 노출되는 경우, 즉 다른 포트에 연결해야 하는 경우에 이 매개 변수를 사용해야 합니다.</maml:para><maml:para>SQL Server 클라우드 어댑터는 이 포트에서 액세스 가능해야 합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RetryTimeout</maml:name><maml:description><maml:para>대상 서버에서 명령을 다시 시도하는 기간입니다. 이 제한 시간이 만료되면 다시 시도되지 않습니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue, ByPropertyName)" position="named" aliases=""><maml:name>ServerInstance</maml:name><maml:description><maml:para>이 매개 변수는 작업의 대상이 되는 SQL Server 인스턴스의 이름을 지정합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AcceptSelfSignedCertificate</maml:name><maml:description><maml:para>이 cmdlet이 사용자에게 확인 메시지를 표시하지 않고 대상 컴퓨터의 자체 서명된 SQL Server 클라우드 어댑터 인증서를 자동으로 적용하도록 합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases=""><maml:name>Credential</maml:name><maml:description><maml:para>대상 컴퓨터에서 Windows 관리자 자격 증명을 사용하여 사용자 계정을 지정합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue><dev:type><maml:name>PSCredential</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="named" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>대상 인스턴스의 서버 개체입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="true">Server[]</command:parameterValue><dev:type><maml:name>Server[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ManagementPublicPort</maml:name><maml:description><maml:para>대상 컴퓨터의 공용 관리 포트입니다. 대상 컴퓨터의 포트가 직접 액세스 가능하지는 않지만 끝점을 통해 노출되는 경우, 즉 다른 포트에 연결해야 하는 경우에 이 매개 변수를 사용해야 합니다.</maml:para><maml:para>SQL Server 클라우드 어댑터는 이 포트에서 액세스 가능해야 합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>작업을 실행할 SQL Server 인스턴스의 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RetryTimeout</maml:name><maml:description><maml:para>대상 서버에서 명령을 다시 시도하는 기간입니다. 이 제한 시간이 만료되면 다시 시도되지 않습니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue, ByPropertyName)" position="named" aliases=""><maml:name>ServerInstance</maml:name><maml:description><maml:para>이 매개 변수는 작업의 대상이 되는 SQL Server 인스턴스의 이름을 지정합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title></maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;CD SQLSERVER:\SQL\Computer\Instance;
Remove-SqlFirewallRule -Credential $credential -AcceptSelfSignedCertificate;
 
</dev:code><dev:remarks><maml:para>이 명령은 이 컴퓨터의 ‘Instance’ SQL Server 인스턴스에 대한 연결을 허용하는 Windows 방화벽 규칙을 ‘Computer’ 컴퓨터에서 추가합니다. 작업이 발생해야 하는 서버 인스턴스를 확인하기 위해 현재 작업 디렉터리가 사용됩니다. 사용자에게 확인 메시지를 표시하지 않고 대상 컴퓨터의 자체 서명된 인증서가 자동으로 적용됩니다.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title></maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>This command retrieves all instances of SQL Server on the machine ‘MachineName’ and disables the Windows Firewall rules to block connections to each one of them. The self-signed certificate of the target machine will be automatically accepted without prompting the user.
PS C:\&gt;Get-SqlInstance -Credential $credential -MachineName "MachineName" | Remove-SqlFirewallRule -Credential $credential -AcceptSelfSignedCertificate;
 
</dev:code><dev:remarks><maml:para></maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Online Version:</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Restore-SqlDatabase</command:name><maml:description><maml:para>데이터베이스의 전부 또는 일부 또는 트랜잭션 로그 레코드의 백업을 복원합니다.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Restore</command:verb><command:noun>SqlDatabase</command:noun><dev:version /></command:details><maml:description><maml:para>Restore-SqlDatabase cmdlet은 SQL Server 데이터베이스에서 복원 작업을 수행합니다. 이 작업에는 전체 데이터베이스 복원, 트랜잭션 로그 복원 및 데이터베이스 파일 복원이 포함됩니다. 이 cmdlet은 Microsoft.SqlServer.Management.Smo.Restore 클래스 다음에 모델링됩니다. 이 클래스의 매개 변수는 일반적으로 Smo 개체의 속성에 해당합니다.
</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Restore-SqlDatabase</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Database</maml:name><maml:description><maml:para>복원할 데이터베이스의 이름입니다. -DatabaseObject 매개 변수와 함께 사용할 수 없습니다.
</maml:para><maml:para>-Database 매개 변수가 사용된 경우 -Path, -InputObject 또는 -ServerInstance 매개 변수도 지정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>BackupFile</maml:name><maml:description><maml:para>백업 파일이 저장되는 위치 하나 또는 여러 위치입니다. 선택적 매개 변수입니다. 지정되지 않은 경우, 로그 복원의 경우 서버의 기본 백업 위치에서 "databasename.trn"이 검색되며 나머지 유형의 복원의 경우는 "databasename.bak"이 검색됩니다. 이 매개 변수는 BackupDevice 매개 변수와 함께 사용할 수 없습니다. Windows Azure Blob 저장소 서비스(URL)를 백업하는 경우 이 매개 변수 또는 BackupDevice 매개 변수가 필요합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupDevice</maml:name><maml:description><maml:para>백업이 저장될 장치입니다. 이 매개 변수는 BackupFile 매개 변수와 함께 사용할 수 없습니다. 테이프 장치에 백업하는 경우 이 매개 변수를 사용합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">BackupDeviceItem[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BlockSize</maml:name><maml:description><maml:para>백업의 물리적 블록 크기(바이트)입니다. 지원되는 크기는 512, 1024, 2048, 4096, 8192, 16384, 32768 및 65536(64KB) 바이트입니다. 테이프 장치의 기본값은 65536이고 그렇지 않은 경우에는 512입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BufferCount</maml:name><maml:description><maml:para>백업 작업에 사용되는 I/O 버퍼의 총 수입니다. 임의의 양의 정수를 지정할 수 있습니다. 많은 버퍼를 사용할 경우 Sqlservr.exe 프로세스에 가상 주소 공간이 충분하지 않아 "out of memory" 오류가 발생할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Checksum</maml:name><maml:description><maml:para>복원 작업 중 체크섬 값을 계산합니다. 설정되지 않은 경우는 체크섬이 계산되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ClearSuspectPageTable</maml:name><maml:description><maml:para>복원 작업 다음에 주의 대상 페이지 테이블을 삭제합니다. 설정되지 않은 경우 주의 대상 페이지 테이블에 어떤 동작도 수행되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ContinueAfterError</maml:name><maml:description><maml:para>체크섬 오류가 발생할 경우 작업이 계속됩니다. 설정되지 않은 경우 체크섬 오류 후 작업이 실패합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>DatabaseFile</maml:name><maml:description><maml:para>복원 작업의 대상인 데이터베이스 파일입니다. RestoreAction 속성이 Files로 설정된 경우에만 사용됩니다. RestoreAction 매개 변수가 Files로 설정된 경우 DatabaseFileGroups 속성 또는 DatabaseFiles 속성을 반드시 지정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>DatabaseFileGroup</maml:name><maml:description><maml:para>복원 작업의 대상인 데이터베이스 파일 그룹입니다. RestoreAction 속성이 Files로 설정된 경우에만 사용됩니다. RestoreAction 매개 변수가 Files로 설정된 경우 DatabaseFileGroups 속성 또는 DatabaseFiles 속성을 반드시 지정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>FileNumber</maml:name><maml:description><maml:para>백업 미디어에서 대상 백업 세트를 식별하는 데 사용되는 인덱스 번호입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>KeepReplication</maml:name><maml:description><maml:para>복제 구성을 유지합니다. 설정되지 않은 경우 복원 작업 중 복제 구성이 무시됩니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MaxTransferSize</maml:name><maml:description><maml:para>백업 미디어와 SQL Server 인스턴스 간에 전송할 최대 바이트 수입니다. 가능한 값은 최대 4194304바이트(4MB)까지 65536바이트(64KB)의 배수입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MediaName</maml:name><maml:description><maml:para>특정 미디어 집합을 식별하는 데 사용하는 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoRecovery</maml:name><maml:description><maml:para>데이터베이스가 복원 중인 상태로 복원됩니다. 롤백이 발생하지 않습니다. 추가 백업을 복원할 수 있습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoRewind</maml:name><maml:description><maml:para>복원이 완료될 때 끝 위치에서 테이프 드라이브를 열어 둡니다. 설정되지 않은 경우 작업이 완료된 후 테이프가 되감깁니다. 디스크 복원에는 적용되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Offset</maml:name><maml:description><maml:para>복원할 페이지 주소입니다. -RestoreAction이 OnlinePage로 설정된 경우에만 관련이 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">Int64[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Partial</maml:name><maml:description><maml:para>복원 작업이 부분 복원입니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>PassThru</maml:name><maml:description><maml:para>백업 작업을 수행하는 데 사용되는 Smo Backup 개체를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>복원 작업을 실행하려는 SQL Server의 인스턴스에 대한 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 현재 작업 위치를 사용합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RelocateFile</maml:name><maml:description><maml:para>Smo.Relocate 파일 개체의 목록입니다. 각 개체는 논리적 백업 파일 이름과 물리적 파일 시스템 위치로 구성됩니다. 복원 작업은 복원된 데이터베이스를 대상 서버의 지정된 물리적 위치로 이동합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">RelocateFile[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ReplaceDatabase</maml:name><maml:description><maml:para>데이터베이스의 새 이미지를 만듭니다. 이름이 같은 기존 데이터베이스를 모두 덮어씁니다. 지정되지 않은 경우 해당 이름의 데이터베이스가 이미 있으면 복원 작업이 실패합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Restart</maml:name><maml:description><maml:para>부분적으로 완료된 복원 작업의 처리를 계속합니다. 설정되지 않은 경우(기본값) cmdlet은 중단된 복원 작업을 백업 세트의 처음부터 다시 시작합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RestoreAction</maml:name><maml:description><maml:para>수행해야 할 복원 작업의 유형입니다. 유효한 옵션은 다음과 같이 Database, Files, Log, OnlinePage 및 OnlineFiles가 있습니다.
</maml:para><maml:para>Database: 데이터베이스를 복원합니다.
</maml:para><maml:para>Files: 하나 이상의 데이터 파일을 복원합니다. DatabaseFile 또는 DatabaseFileGroup 매개 변수를 설정해야 합니다.
</maml:para><maml:para>Log: 트랜잭션 로그를 복원합니다.
</maml:para><maml:para>OnlinePage: 다른 사용자가 데이터베이스를 사용할 수 있는 동안 데이터 페이지를 온라인으로 복원합니다.
</maml:para><maml:para>OnlineFiles: 다른 사용자가 데이터베이스를 사용할 수 있는 동안 하나 이상의 데이터 파일을 복원합니다. DatabaseFile 또는 DatabaseFileGroup 매개 변수를 설정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">RestoreActionType</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RestrictedUser</maml:name><maml:description><maml:para>복원된 데이터베이스에 대한 데이터베이스 액세스를 db_owner 고정 데이터베이스 역할과 dbcreator 및 sysadmin 고정 서버 역할로 제한합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>SqlCredential</maml:name><maml:description><maml:para>인증 정보를 저장하여 Windows Azure Blob 저장소 서비스에 대한 인증을 받는 데 필요한 SQL Server 자격 증명입니다. 저장된 인증 정보에는 Windows Azure 저장소 계정 이름과 연결된 액세스 키 값이 포함됩니다. 이 인증 정보는 Windows Azure Blob 저장소 서비스(URL)에서 복원할 때 필요한 매개 변수입니다. 이 매개 변수는 디스크 또는 테이프와 함께 사용되지 않습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSObject</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>StandbyFile</maml:name><maml:description><maml:para>SQL Server 인스턴스에 대한 이미징 전략의 일부로 사용되는 실행 취소 파일의 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>StopAtMarkAfterDate</maml:name><maml:description><maml:para>StopAtMarkName 매개 변수로 지정된 표시 이름과 함께 복구 작업의 중지 지점을 결정하는 데 사용할 날짜를 지정합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>StopAtMarkName</maml:name><maml:description><maml:para>표시된 트랜잭션 이후 복구를 중지합니다. StopAtMarkAfterDate 매개 변수와 함께 복구 작업의 중지 지점을 결정하는 데 사용됩니다. 복구 시 표시가 포함된 트랜잭션이 포함됩니다. StopAtMarkAfterDate 값이 설정되지 않은 경우 지정된 이름의 첫 번째 표시에서 복구가 정지합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>StopBeforeMarkAfterDate</maml:name><maml:description><maml:para>StopBeforeMarkName과 함께 복구 작업의 중지 지점을 결정하는 데 사용할 날짜를 지정합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>StopBeforeMarkName</maml:name><maml:description><maml:para>표시된 트랜잭션 전에 복구를 중지합니다. StopBeforeMarkAfterDate 매개 변수와 함께 복구 작업의 중지 지점을 결정하는 데 사용됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ToPointInTime</maml:name><maml:description><maml:para>데이터베이스 로그 복원의 끝점입니다. -RestoreAction 매개 변수가 Log로 설정된 경우에만 적용됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>UnloadTapeAfter</maml:name><maml:description><maml:para>작업이 완료되면 테이프 장치가 되감기고 언로드됩니다. 설정되지 않은 경우 테이프 미디어를 되감고 언로드하지 않습니다. 디스크 백업에는 적용되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Restore-SqlDatabase</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Database</maml:name><maml:description><maml:para>복원할 데이터베이스의 이름입니다. -DatabaseObject 매개 변수와 함께 사용할 수 없습니다.
</maml:para><maml:para>-Database 매개 변수가 사용된 경우 -Path, -InputObject 또는 -ServerInstance 매개 변수도 지정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>BackupFile</maml:name><maml:description><maml:para>백업 파일이 저장되는 위치 하나 또는 여러 위치입니다. 선택적 매개 변수입니다. 지정되지 않은 경우, 로그 복원의 경우 서버의 기본 백업 위치에서 "databasename.trn"이 검색되며 나머지 유형의 복원의 경우는 "databasename.bak"이 검색됩니다. 이 매개 변수는 BackupDevice 매개 변수와 함께 사용할 수 없습니다. Windows Azure Blob 저장소 서비스(URL)를 백업하는 경우 이 매개 변수 또는 BackupDevice 매개 변수가 필요합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupDevice</maml:name><maml:description><maml:para>백업이 저장될 장치입니다. 이 매개 변수는 BackupFile 매개 변수와 함께 사용할 수 없습니다. 테이프 장치에 백업하는 경우 이 매개 변수를 사용합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">BackupDeviceItem[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BlockSize</maml:name><maml:description><maml:para>백업의 물리적 블록 크기(바이트)입니다. 지원되는 크기는 512, 1024, 2048, 4096, 8192, 16384, 32768 및 65536(64KB) 바이트입니다. 테이프 장치의 기본값은 65536이고 그렇지 않은 경우에는 512입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BufferCount</maml:name><maml:description><maml:para>백업 작업에 사용되는 I/O 버퍼의 총 수입니다. 임의의 양의 정수를 지정할 수 있습니다. 많은 버퍼를 사용할 경우 Sqlservr.exe 프로세스에 가상 주소 공간이 충분하지 않아 "out of memory" 오류가 발생할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Checksum</maml:name><maml:description><maml:para>복원 작업 중 체크섬 값을 계산합니다. 설정되지 않은 경우는 체크섬이 계산되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ClearSuspectPageTable</maml:name><maml:description><maml:para>복원 작업 다음에 주의 대상 페이지 테이블을 삭제합니다. 설정되지 않은 경우 주의 대상 페이지 테이블에 어떤 동작도 수행되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ConnectionTimeout</maml:name><maml:description><maml:para>제한 시간이 초과하기 전까지 서버 연결을 대기하는 시간(초)입니다. 제한 시간 값은 0에서 65534 사이의 정수여야 합니다. 0을 지정하면 연결 시도 시간이 제한되지 않습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ContinueAfterError</maml:name><maml:description><maml:para>체크섬 오류가 발생할 경우 작업이 계속됩니다. 설정되지 않은 경우 체크섬 오류 후 작업이 실패합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Credential</maml:name><maml:description><maml:para>이 작업을 수행할 권한이 있는 SQL Server 로그인의 자격 증명을 지정하는 PSCredential 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>DatabaseFile</maml:name><maml:description><maml:para>복원 작업의 대상인 데이터베이스 파일입니다. RestoreAction 속성이 Files로 설정된 경우에만 사용됩니다. RestoreAction 매개 변수가 Files로 설정된 경우 DatabaseFileGroups 속성 또는 DatabaseFiles 속성을 반드시 지정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>DatabaseFileGroup</maml:name><maml:description><maml:para>복원 작업의 대상인 데이터베이스 파일 그룹입니다. RestoreAction 속성이 Files로 설정된 경우에만 사용됩니다. RestoreAction 매개 변수가 Files로 설정된 경우 DatabaseFileGroups 속성 또는 DatabaseFiles 속성을 반드시 지정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>FileNumber</maml:name><maml:description><maml:para>백업 미디어에서 대상 백업 세트를 식별하는 데 사용되는 인덱스 번호입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>KeepReplication</maml:name><maml:description><maml:para>복제 구성을 유지합니다. 설정되지 않은 경우 복원 작업 중 복제 구성이 무시됩니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MaxTransferSize</maml:name><maml:description><maml:para>백업 미디어와 SQL Server 인스턴스 간에 전송할 최대 바이트 수입니다. 가능한 값은 최대 4194304바이트(4MB)까지 65536바이트(64KB)의 배수입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MediaName</maml:name><maml:description><maml:para>특정 미디어 집합을 식별하는 데 사용하는 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoRecovery</maml:name><maml:description><maml:para>데이터베이스가 복원 중인 상태로 복원됩니다. 롤백이 발생하지 않습니다. 추가 백업을 복원할 수 있습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoRewind</maml:name><maml:description><maml:para>복원이 완료될 때 끝 위치에서 테이프 드라이브를 열어 둡니다. 설정되지 않은 경우 작업이 완료된 후 테이프가 되감깁니다. 디스크 복원에는 적용되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Offset</maml:name><maml:description><maml:para>복원할 페이지 주소입니다. -RestoreAction이 OnlinePage로 설정된 경우에만 관련이 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">Int64[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Partial</maml:name><maml:description><maml:para>복원 작업이 부분 복원입니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>PassThru</maml:name><maml:description><maml:para>백업 작업을 수행하는 데 사용되는 Smo Backup 개체를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RelocateFile</maml:name><maml:description><maml:para>Smo.Relocate 파일 개체의 목록입니다. 각 개체는 논리적 백업 파일 이름과 물리적 파일 시스템 위치로 구성됩니다. 복원 작업은 복원된 데이터베이스를 대상 서버의 지정된 물리적 위치로 이동합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">RelocateFile[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ReplaceDatabase</maml:name><maml:description><maml:para>데이터베이스의 새 이미지를 만듭니다. 이름이 같은 기존 데이터베이스를 모두 덮어씁니다. 지정되지 않은 경우 해당 이름의 데이터베이스가 이미 있으면 복원 작업이 실패합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Restart</maml:name><maml:description><maml:para>부분적으로 완료된 복원 작업의 처리를 계속합니다. 설정되지 않은 경우(기본값) cmdlet은 중단된 복원 작업을 백업 세트의 처음부터 다시 시작합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RestoreAction</maml:name><maml:description><maml:para>수행해야 할 복원 작업의 유형입니다. 유효한 옵션은 다음과 같이 Database, Files, Log, OnlinePage 및 OnlineFiles가 있습니다.
</maml:para><maml:para>Database: 데이터베이스를 복원합니다.
</maml:para><maml:para>Files: 하나 이상의 데이터 파일을 복원합니다. DatabaseFile 또는 DatabaseFileGroup 매개 변수를 설정해야 합니다.
</maml:para><maml:para>Log: 트랜잭션 로그를 복원합니다.
</maml:para><maml:para>OnlinePage: 다른 사용자가 데이터베이스를 사용할 수 있는 동안 데이터 페이지를 온라인으로 복원합니다.
</maml:para><maml:para>OnlineFiles: 다른 사용자가 데이터베이스를 사용할 수 있는 동안 하나 이상의 데이터 파일을 복원합니다. DatabaseFile 또는 DatabaseFileGroup 매개 변수를 설정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">RestoreActionType</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RestrictedUser</maml:name><maml:description><maml:para>복원된 데이터베이스에 대한 데이터베이스 액세스를 db_owner 고정 데이터베이스 역할과 dbcreator 및 sysadmin 고정 서버 역할로 제한합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>SqlCredential</maml:name><maml:description><maml:para>인증 정보를 저장하여 Windows Azure Blob 저장소 서비스에 대한 인증을 받는 데 필요한 SQL Server 자격 증명입니다. 저장된 인증 정보에는 Windows Azure 저장소 계정 이름과 연결된 액세스 키 값이 포함됩니다. 이 인증 정보는 Windows Azure Blob 저장소 서비스(URL)에서 복원할 때 필요한 매개 변수입니다. 이 매개 변수는 디스크 또는 테이프와 함께 사용되지 않습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSObject</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>StandbyFile</maml:name><maml:description><maml:para>SQL Server 인스턴스에 대한 이미징 전략의 일부로 사용되는 실행 취소 파일의 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>StopAtMarkAfterDate</maml:name><maml:description><maml:para>StopAtMarkName 매개 변수로 지정된 표시 이름과 함께 복구 작업의 중지 지점을 결정하는 데 사용할 날짜를 지정합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>StopAtMarkName</maml:name><maml:description><maml:para>표시된 트랜잭션 이후 복구를 중지합니다. StopAtMarkAfterDate 매개 변수와 함께 복구 작업의 중지 지점을 결정하는 데 사용됩니다. 복구 시 표시가 포함된 트랜잭션이 포함됩니다. StopAtMarkAfterDate 값이 설정되지 않은 경우 지정된 이름의 첫 번째 표시에서 복구가 정지합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>StopBeforeMarkAfterDate</maml:name><maml:description><maml:para>StopBeforeMarkName과 함께 복구 작업의 중지 지점을 결정하는 데 사용할 날짜를 지정합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>StopBeforeMarkName</maml:name><maml:description><maml:para>표시된 트랜잭션 전에 복구를 중지합니다. StopBeforeMarkAfterDate 매개 변수와 함께 복구 작업의 중지 지점을 결정하는 데 사용됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ToPointInTime</maml:name><maml:description><maml:para>데이터베이스 로그 복원의 끝점입니다. -RestoreAction 매개 변수가 Log로 설정된 경우에만 적용됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>UnloadTapeAfter</maml:name><maml:description><maml:para>작업이 완료되면 테이프 장치가 되감기고 언로드됩니다. 설정되지 않은 경우 테이프 미디어를 되감고 언로드하지 않습니다. 디스크 백업에는 적용되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue, ByPropertyName)" position="named" aliases=""><maml:name>ServerInstance</maml:name><maml:description><maml:para>SQL Server 인스턴스의 이름입니다. 이 서버 인스턴스는 복원 작업의 대상이 됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Restore-SqlDatabase</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Database</maml:name><maml:description><maml:para>복원할 데이터베이스의 이름입니다. -DatabaseObject 매개 변수와 함께 사용할 수 없습니다.
</maml:para><maml:para>-Database 매개 변수가 사용된 경우 -Path, -InputObject 또는 -ServerInstance 매개 변수도 지정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>BackupFile</maml:name><maml:description><maml:para>백업 파일이 저장되는 위치 하나 또는 여러 위치입니다. 선택적 매개 변수입니다. 지정되지 않은 경우, 로그 복원의 경우 서버의 기본 백업 위치에서 "databasename.trn"이 검색되며 나머지 유형의 복원의 경우는 "databasename.bak"이 검색됩니다. 이 매개 변수는 BackupDevice 매개 변수와 함께 사용할 수 없습니다. Windows Azure Blob 저장소 서비스(URL)를 백업하는 경우 이 매개 변수 또는 BackupDevice 매개 변수가 필요합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupDevice</maml:name><maml:description><maml:para>백업이 저장될 장치입니다. 이 매개 변수는 BackupFile 매개 변수와 함께 사용할 수 없습니다. 테이프 장치에 백업하는 경우 이 매개 변수를 사용합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">BackupDeviceItem[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BlockSize</maml:name><maml:description><maml:para>백업의 물리적 블록 크기(바이트)입니다. 지원되는 크기는 512, 1024, 2048, 4096, 8192, 16384, 32768 및 65536(64KB) 바이트입니다. 테이프 장치의 기본값은 65536이고 그렇지 않은 경우에는 512입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BufferCount</maml:name><maml:description><maml:para>백업 작업에 사용되는 I/O 버퍼의 총 수입니다. 임의의 양의 정수를 지정할 수 있습니다. 많은 버퍼를 사용할 경우 Sqlservr.exe 프로세스에 가상 주소 공간이 충분하지 않아 "out of memory" 오류가 발생할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Checksum</maml:name><maml:description><maml:para>복원 작업 중 체크섬 값을 계산합니다. 설정되지 않은 경우는 체크섬이 계산되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ClearSuspectPageTable</maml:name><maml:description><maml:para>복원 작업 다음에 주의 대상 페이지 테이블을 삭제합니다. 설정되지 않은 경우 주의 대상 페이지 테이블에 어떤 동작도 수행되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ContinueAfterError</maml:name><maml:description><maml:para>체크섬 오류가 발생할 경우 작업이 계속됩니다. 설정되지 않은 경우 체크섬 오류 후 작업이 실패합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>DatabaseFile</maml:name><maml:description><maml:para>복원 작업의 대상인 데이터베이스 파일입니다. RestoreAction 속성이 Files로 설정된 경우에만 사용됩니다. RestoreAction 매개 변수가 Files로 설정된 경우 DatabaseFileGroups 속성 또는 DatabaseFiles 속성을 반드시 지정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>DatabaseFileGroup</maml:name><maml:description><maml:para>복원 작업의 대상인 데이터베이스 파일 그룹입니다. RestoreAction 속성이 Files로 설정된 경우에만 사용됩니다. RestoreAction 매개 변수가 Files로 설정된 경우 DatabaseFileGroups 속성 또는 DatabaseFiles 속성을 반드시 지정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>FileNumber</maml:name><maml:description><maml:para>백업 미디어에서 대상 백업 세트를 식별하는 데 사용되는 인덱스 번호입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>KeepReplication</maml:name><maml:description><maml:para>복제 구성을 유지합니다. 설정되지 않은 경우 복원 작업 중 복제 구성이 무시됩니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MaxTransferSize</maml:name><maml:description><maml:para>백업 미디어와 SQL Server 인스턴스 간에 전송할 최대 바이트 수입니다. 가능한 값은 최대 4194304바이트(4MB)까지 65536바이트(64KB)의 배수입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MediaName</maml:name><maml:description><maml:para>특정 미디어 집합을 식별하는 데 사용하는 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoRecovery</maml:name><maml:description><maml:para>데이터베이스가 복원 중인 상태로 복원됩니다. 롤백이 발생하지 않습니다. 추가 백업을 복원할 수 있습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoRewind</maml:name><maml:description><maml:para>복원이 완료될 때 끝 위치에서 테이프 드라이브를 열어 둡니다. 설정되지 않은 경우 작업이 완료된 후 테이프가 되감깁니다. 디스크 복원에는 적용되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Offset</maml:name><maml:description><maml:para>복원할 페이지 주소입니다. -RestoreAction이 OnlinePage로 설정된 경우에만 관련이 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">Int64[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Partial</maml:name><maml:description><maml:para>복원 작업이 부분 복원입니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>PassThru</maml:name><maml:description><maml:para>백업 작업을 수행하는 데 사용되는 Smo Backup 개체를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RelocateFile</maml:name><maml:description><maml:para>Smo.Relocate 파일 개체의 목록입니다. 각 개체는 논리적 백업 파일 이름과 물리적 파일 시스템 위치로 구성됩니다. 복원 작업은 복원된 데이터베이스를 대상 서버의 지정된 물리적 위치로 이동합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">RelocateFile[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ReplaceDatabase</maml:name><maml:description><maml:para>데이터베이스의 새 이미지를 만듭니다. 이름이 같은 기존 데이터베이스를 모두 덮어씁니다. 지정되지 않은 경우 해당 이름의 데이터베이스가 이미 있으면 복원 작업이 실패합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Restart</maml:name><maml:description><maml:para>부분적으로 완료된 복원 작업의 처리를 계속합니다. 설정되지 않은 경우(기본값) cmdlet은 중단된 복원 작업을 백업 세트의 처음부터 다시 시작합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RestoreAction</maml:name><maml:description><maml:para>수행해야 할 복원 작업의 유형입니다. 유효한 옵션은 다음과 같이 Database, Files, Log, OnlinePage 및 OnlineFiles가 있습니다.
</maml:para><maml:para>Database: 데이터베이스를 복원합니다.
</maml:para><maml:para>Files: 하나 이상의 데이터 파일을 복원합니다. DatabaseFile 또는 DatabaseFileGroup 매개 변수를 설정해야 합니다.
</maml:para><maml:para>Log: 트랜잭션 로그를 복원합니다.
</maml:para><maml:para>OnlinePage: 다른 사용자가 데이터베이스를 사용할 수 있는 동안 데이터 페이지를 온라인으로 복원합니다.
</maml:para><maml:para>OnlineFiles: 다른 사용자가 데이터베이스를 사용할 수 있는 동안 하나 이상의 데이터 파일을 복원합니다. DatabaseFile 또는 DatabaseFileGroup 매개 변수를 설정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">RestoreActionType</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RestrictedUser</maml:name><maml:description><maml:para>복원된 데이터베이스에 대한 데이터베이스 액세스를 db_owner 고정 데이터베이스 역할과 dbcreator 및 sysadmin 고정 서버 역할로 제한합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>SqlCredential</maml:name><maml:description><maml:para>인증 정보를 저장하여 Windows Azure Blob 저장소 서비스에 대한 인증을 받는 데 필요한 SQL Server 자격 증명입니다. 저장된 인증 정보에는 Windows Azure 저장소 계정 이름과 연결된 액세스 키 값이 포함됩니다. 이 인증 정보는 Windows Azure Blob 저장소 서비스(URL)에서 복원할 때 필요한 매개 변수입니다. 이 매개 변수는 디스크 또는 테이프와 함께 사용되지 않습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSObject</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>StandbyFile</maml:name><maml:description><maml:para>SQL Server 인스턴스에 대한 이미징 전략의 일부로 사용되는 실행 취소 파일의 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>StopAtMarkAfterDate</maml:name><maml:description><maml:para>StopAtMarkName 매개 변수로 지정된 표시 이름과 함께 복구 작업의 중지 지점을 결정하는 데 사용할 날짜를 지정합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>StopAtMarkName</maml:name><maml:description><maml:para>표시된 트랜잭션 이후 복구를 중지합니다. StopAtMarkAfterDate 매개 변수와 함께 복구 작업의 중지 지점을 결정하는 데 사용됩니다. 복구 시 표시가 포함된 트랜잭션이 포함됩니다. StopAtMarkAfterDate 값이 설정되지 않은 경우 지정된 이름의 첫 번째 표시에서 복구가 정지합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>StopBeforeMarkAfterDate</maml:name><maml:description><maml:para>StopBeforeMarkName과 함께 복구 작업의 중지 지점을 결정하는 데 사용할 날짜를 지정합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>StopBeforeMarkName</maml:name><maml:description><maml:para>표시된 트랜잭션 전에 복구를 중지합니다. StopBeforeMarkAfterDate 매개 변수와 함께 복구 작업의 중지 지점을 결정하는 데 사용됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ToPointInTime</maml:name><maml:description><maml:para>데이터베이스 로그 복원의 끝점입니다. -RestoreAction 매개 변수가 Log로 설정된 경우에만 적용됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>UnloadTapeAfter</maml:name><maml:description><maml:para>작업이 완료되면 테이프 장치가 되감기고 언로드됩니다. 설정되지 않은 경우 테이프 미디어를 되감고 언로드하지 않습니다. 디스크 백업에는 적용되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="named" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>복원이 발생해야 할 SQL Server 인스턴스의 Server 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">Server[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Restore-SqlDatabase</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>DatabaseObject</maml:name><maml:description><maml:para>데이터베이스 개체입니다. 복원 작업은 이 데이터베이스의 백업을 복원합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Database</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>BackupFile</maml:name><maml:description><maml:para>백업 파일이 저장되는 위치 하나 또는 여러 위치입니다. 선택적 매개 변수입니다. 지정되지 않은 경우, 로그 복원의 경우 서버의 기본 백업 위치에서 "databasename.trn"이 검색되며 나머지 유형의 복원의 경우는 "databasename.bak"이 검색됩니다. 이 매개 변수는 BackupDevice 매개 변수와 함께 사용할 수 없습니다. Windows Azure Blob 저장소 서비스(URL)를 백업하는 경우 이 매개 변수 또는 BackupDevice 매개 변수가 필요합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupDevice</maml:name><maml:description><maml:para>백업이 저장될 장치입니다. 이 매개 변수는 BackupFile 매개 변수와 함께 사용할 수 없습니다. 테이프 장치에 백업하는 경우 이 매개 변수를 사용합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">BackupDeviceItem[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BlockSize</maml:name><maml:description><maml:para>백업의 물리적 블록 크기(바이트)입니다. 지원되는 크기는 512, 1024, 2048, 4096, 8192, 16384, 32768 및 65536(64KB) 바이트입니다. 테이프 장치의 기본값은 65536이고 그렇지 않은 경우에는 512입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BufferCount</maml:name><maml:description><maml:para>백업 작업에 사용되는 I/O 버퍼의 총 수입니다. 임의의 양의 정수를 지정할 수 있습니다. 많은 버퍼를 사용할 경우 Sqlservr.exe 프로세스에 가상 주소 공간이 충분하지 않아 "out of memory" 오류가 발생할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Checksum</maml:name><maml:description><maml:para>복원 작업 중 체크섬 값을 계산합니다. 설정되지 않은 경우는 체크섬이 계산되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ClearSuspectPageTable</maml:name><maml:description><maml:para>복원 작업 다음에 주의 대상 페이지 테이블을 삭제합니다. 설정되지 않은 경우 주의 대상 페이지 테이블에 어떤 동작도 수행되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ContinueAfterError</maml:name><maml:description><maml:para>체크섬 오류가 발생할 경우 작업이 계속됩니다. 설정되지 않은 경우 체크섬 오류 후 작업이 실패합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>DatabaseFile</maml:name><maml:description><maml:para>복원 작업의 대상인 데이터베이스 파일입니다. RestoreAction 속성이 Files로 설정된 경우에만 사용됩니다. RestoreAction 매개 변수가 Files로 설정된 경우 DatabaseFileGroups 속성 또는 DatabaseFiles 속성을 반드시 지정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>DatabaseFileGroup</maml:name><maml:description><maml:para>복원 작업의 대상인 데이터베이스 파일 그룹입니다. RestoreAction 속성이 Files로 설정된 경우에만 사용됩니다. RestoreAction 매개 변수가 Files로 설정된 경우 DatabaseFileGroups 속성 또는 DatabaseFiles 속성을 반드시 지정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>FileNumber</maml:name><maml:description><maml:para>백업 미디어에서 대상 백업 세트를 식별하는 데 사용되는 인덱스 번호입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>KeepReplication</maml:name><maml:description><maml:para>복제 구성을 유지합니다. 설정되지 않은 경우 복원 작업 중 복제 구성이 무시됩니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MaxTransferSize</maml:name><maml:description><maml:para>백업 미디어와 SQL Server 인스턴스 간에 전송할 최대 바이트 수입니다. 가능한 값은 최대 4194304바이트(4MB)까지 65536바이트(64KB)의 배수입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MediaName</maml:name><maml:description><maml:para>특정 미디어 집합을 식별하는 데 사용하는 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoRecovery</maml:name><maml:description><maml:para>데이터베이스가 복원 중인 상태로 복원됩니다. 롤백이 발생하지 않습니다. 추가 백업을 복원할 수 있습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoRewind</maml:name><maml:description><maml:para>복원이 완료될 때 끝 위치에서 테이프 드라이브를 열어 둡니다. 설정되지 않은 경우 작업이 완료된 후 테이프가 되감깁니다. 디스크 복원에는 적용되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Offset</maml:name><maml:description><maml:para>복원할 페이지 주소입니다. -RestoreAction이 OnlinePage로 설정된 경우에만 관련이 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">Int64[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Partial</maml:name><maml:description><maml:para>복원 작업이 부분 복원입니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>PassThru</maml:name><maml:description><maml:para>백업 작업을 수행하는 데 사용되는 Smo Backup 개체를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RelocateFile</maml:name><maml:description><maml:para>Smo.Relocate 파일 개체의 목록입니다. 각 개체는 논리적 백업 파일 이름과 물리적 파일 시스템 위치로 구성됩니다. 복원 작업은 복원된 데이터베이스를 대상 서버의 지정된 물리적 위치로 이동합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">RelocateFile[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ReplaceDatabase</maml:name><maml:description><maml:para>데이터베이스의 새 이미지를 만듭니다. 이름이 같은 기존 데이터베이스를 모두 덮어씁니다. 지정되지 않은 경우 해당 이름의 데이터베이스가 이미 있으면 복원 작업이 실패합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Restart</maml:name><maml:description><maml:para>부분적으로 완료된 복원 작업의 처리를 계속합니다. 설정되지 않은 경우(기본값) cmdlet은 중단된 복원 작업을 백업 세트의 처음부터 다시 시작합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RestoreAction</maml:name><maml:description><maml:para>수행해야 할 복원 작업의 유형입니다. 유효한 옵션은 다음과 같이 Database, Files, Log, OnlinePage 및 OnlineFiles가 있습니다.
</maml:para><maml:para>Database: 데이터베이스를 복원합니다.
</maml:para><maml:para>Files: 하나 이상의 데이터 파일을 복원합니다. DatabaseFile 또는 DatabaseFileGroup 매개 변수를 설정해야 합니다.
</maml:para><maml:para>Log: 트랜잭션 로그를 복원합니다.
</maml:para><maml:para>OnlinePage: 다른 사용자가 데이터베이스를 사용할 수 있는 동안 데이터 페이지를 온라인으로 복원합니다.
</maml:para><maml:para>OnlineFiles: 다른 사용자가 데이터베이스를 사용할 수 있는 동안 하나 이상의 데이터 파일을 복원합니다. DatabaseFile 또는 DatabaseFileGroup 매개 변수를 설정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">RestoreActionType</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RestrictedUser</maml:name><maml:description><maml:para>복원된 데이터베이스에 대한 데이터베이스 액세스를 db_owner 고정 데이터베이스 역할과 dbcreator 및 sysadmin 고정 서버 역할로 제한합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>SqlCredential</maml:name><maml:description><maml:para>인증 정보를 저장하여 Windows Azure Blob 저장소 서비스에 대한 인증을 받는 데 필요한 SQL Server 자격 증명입니다. 저장된 인증 정보에는 Windows Azure 저장소 계정 이름과 연결된 액세스 키 값이 포함됩니다. 이 인증 정보는 Windows Azure Blob 저장소 서비스(URL)에서 복원할 때 필요한 매개 변수입니다. 이 매개 변수는 디스크 또는 테이프와 함께 사용되지 않습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSObject</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>StandbyFile</maml:name><maml:description><maml:para>SQL Server 인스턴스에 대한 이미징 전략의 일부로 사용되는 실행 취소 파일의 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>StopAtMarkAfterDate</maml:name><maml:description><maml:para>StopAtMarkName 매개 변수로 지정된 표시 이름과 함께 복구 작업의 중지 지점을 결정하는 데 사용할 날짜를 지정합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>StopAtMarkName</maml:name><maml:description><maml:para>표시된 트랜잭션 이후 복구를 중지합니다. StopAtMarkAfterDate 매개 변수와 함께 복구 작업의 중지 지점을 결정하는 데 사용됩니다. 복구 시 표시가 포함된 트랜잭션이 포함됩니다. StopAtMarkAfterDate 값이 설정되지 않은 경우 지정된 이름의 첫 번째 표시에서 복구가 정지합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>StopBeforeMarkAfterDate</maml:name><maml:description><maml:para>StopBeforeMarkName과 함께 복구 작업의 중지 지점을 결정하는 데 사용할 날짜를 지정합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>StopBeforeMarkName</maml:name><maml:description><maml:para>표시된 트랜잭션 전에 복구를 중지합니다. StopBeforeMarkAfterDate 매개 변수와 함께 복구 작업의 중지 지점을 결정하는 데 사용됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ToPointInTime</maml:name><maml:description><maml:para>데이터베이스 로그 복원의 끝점입니다. -RestoreAction 매개 변수가 Log로 설정된 경우에만 적용됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>UnloadTapeAfter</maml:name><maml:description><maml:para>작업이 완료되면 테이프 장치가 되감기고 언로드됩니다. 설정되지 않은 경우 테이프 미디어를 되감고 언로드하지 않습니다. 디스크 백업에는 적용되지 않습니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupDevice</maml:name><maml:description><maml:para>백업이 저장될 장치입니다. 이 매개 변수는 BackupFile 매개 변수와 함께 사용할 수 없습니다. 테이프 장치에 백업하는 경우 이 매개 변수를 사용합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">BackupDeviceItem[]</command:parameterValue><dev:type><maml:name>BackupDeviceItem[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>BackupFile</maml:name><maml:description><maml:para>백업 파일이 저장되는 위치 하나 또는 여러 위치입니다. 선택적 매개 변수입니다. 지정되지 않은 경우, 로그 복원의 경우 서버의 기본 백업 위치에서 "databasename.trn"이 검색되며 나머지 유형의 복원의 경우는 "databasename.bak"이 검색됩니다. 이 매개 변수는 BackupDevice 매개 변수와 함께 사용할 수 없습니다. Windows Azure Blob 저장소 서비스(URL)를 백업하는 경우 이 매개 변수 또는 BackupDevice 매개 변수가 필요합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BlockSize</maml:name><maml:description><maml:para>백업의 물리적 블록 크기(바이트)입니다. 지원되는 크기는 512, 1024, 2048, 4096, 8192, 16384, 32768 및 65536(64KB) 바이트입니다. 테이프 장치의 기본값은 65536이고 그렇지 않은 경우에는 512입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BufferCount</maml:name><maml:description><maml:para>백업 작업에 사용되는 I/O 버퍼의 총 수입니다. 임의의 양의 정수를 지정할 수 있습니다. 많은 버퍼를 사용할 경우 Sqlservr.exe 프로세스에 가상 주소 공간이 충분하지 않아 "out of memory" 오류가 발생할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Checksum</maml:name><maml:description><maml:para>복원 작업 중 체크섬 값을 계산합니다. 설정되지 않은 경우는 체크섬이 계산되지 않습니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ClearSuspectPageTable</maml:name><maml:description><maml:para>복원 작업 다음에 주의 대상 페이지 테이블을 삭제합니다. 설정되지 않은 경우 주의 대상 페이지 테이블에 어떤 동작도 수행되지 않습니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ConnectionTimeout</maml:name><maml:description><maml:para>제한 시간이 초과하기 전까지 서버 연결을 대기하는 시간(초)입니다. 제한 시간 값은 0에서 65534 사이의 정수여야 합니다. 0을 지정하면 연결 시도 시간이 제한되지 않습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ContinueAfterError</maml:name><maml:description><maml:para>체크섬 오류가 발생할 경우 작업이 계속됩니다. 설정되지 않은 경우 체크섬 오류 후 작업이 실패합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Credential</maml:name><maml:description><maml:para>이 작업을 수행할 권한이 있는 SQL Server 로그인의 자격 증명을 지정하는 PSCredential 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue><dev:type><maml:name>PSCredential</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Database</maml:name><maml:description><maml:para>복원할 데이터베이스의 이름입니다. -DatabaseObject 매개 변수와 함께 사용할 수 없습니다.
</maml:para><maml:para>-Database 매개 변수가 사용된 경우 -Path, -InputObject 또는 -ServerInstance 매개 변수도 지정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>DatabaseFile</maml:name><maml:description><maml:para>복원 작업의 대상인 데이터베이스 파일입니다. RestoreAction 속성이 Files로 설정된 경우에만 사용됩니다. RestoreAction 매개 변수가 Files로 설정된 경우 DatabaseFileGroups 속성 또는 DatabaseFiles 속성을 반드시 지정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>DatabaseFileGroup</maml:name><maml:description><maml:para>복원 작업의 대상인 데이터베이스 파일 그룹입니다. RestoreAction 속성이 Files로 설정된 경우에만 사용됩니다. RestoreAction 매개 변수가 Files로 설정된 경우 DatabaseFileGroups 속성 또는 DatabaseFiles 속성을 반드시 지정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>DatabaseObject</maml:name><maml:description><maml:para>데이터베이스 개체입니다. 복원 작업은 이 데이터베이스의 백업을 복원합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Database</command:parameterValue><dev:type><maml:name>Database</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>FileNumber</maml:name><maml:description><maml:para>백업 미디어에서 대상 백업 세트를 식별하는 데 사용되는 인덱스 번호입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="named" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>복원이 발생해야 할 SQL Server 인스턴스의 Server 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">Server[]</command:parameterValue><dev:type><maml:name>Server[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>KeepReplication</maml:name><maml:description><maml:para>복제 구성을 유지합니다. 설정되지 않은 경우 복원 작업 중 복제 구성이 무시됩니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MaxTransferSize</maml:name><maml:description><maml:para>백업 미디어와 SQL Server 인스턴스 간에 전송할 최대 바이트 수입니다. 가능한 값은 최대 4194304바이트(4MB)까지 65536바이트(64KB)의 배수입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>MediaName</maml:name><maml:description><maml:para>특정 미디어 집합을 식별하는 데 사용하는 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoRecovery</maml:name><maml:description><maml:para>데이터베이스가 복원 중인 상태로 복원됩니다. 롤백이 발생하지 않습니다. 추가 백업을 복원할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoRewind</maml:name><maml:description><maml:para>복원이 완료될 때 끝 위치에서 테이프 드라이브를 열어 둡니다. 설정되지 않은 경우 작업이 완료된 후 테이프가 되감깁니다. 디스크 복원에는 적용되지 않습니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Offset</maml:name><maml:description><maml:para>복원할 페이지 주소입니다. -RestoreAction이 OnlinePage로 설정된 경우에만 관련이 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">Int64[]</command:parameterValue><dev:type><maml:name>Int64[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Partial</maml:name><maml:description><maml:para>복원 작업이 부분 복원입니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>PassThru</maml:name><maml:description><maml:para>백업 작업을 수행하는 데 사용되는 Smo Backup 개체를 출력합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>복원 작업을 실행하려는 SQL Server의 인스턴스에 대한 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 현재 작업 위치를 사용합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RelocateFile</maml:name><maml:description><maml:para>Smo.Relocate 파일 개체의 목록입니다. 각 개체는 논리적 백업 파일 이름과 물리적 파일 시스템 위치로 구성됩니다. 복원 작업은 복원된 데이터베이스를 대상 서버의 지정된 물리적 위치로 이동합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">RelocateFile[]</command:parameterValue><dev:type><maml:name>RelocateFile[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ReplaceDatabase</maml:name><maml:description><maml:para>데이터베이스의 새 이미지를 만듭니다. 이름이 같은 기존 데이터베이스를 모두 덮어씁니다. 지정되지 않은 경우 해당 이름의 데이터베이스가 이미 있으면 복원 작업이 실패합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Restart</maml:name><maml:description><maml:para>부분적으로 완료된 복원 작업의 처리를 계속합니다. 설정되지 않은 경우(기본값) cmdlet은 중단된 복원 작업을 백업 세트의 처음부터 다시 시작합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RestoreAction</maml:name><maml:description><maml:para>수행해야 할 복원 작업의 유형입니다. 유효한 옵션은 다음과 같이 Database, Files, Log, OnlinePage 및 OnlineFiles가 있습니다.
</maml:para><maml:para>Database: 데이터베이스를 복원합니다.
</maml:para><maml:para>Files: 하나 이상의 데이터 파일을 복원합니다. DatabaseFile 또는 DatabaseFileGroup 매개 변수를 설정해야 합니다.
</maml:para><maml:para>Log: 트랜잭션 로그를 복원합니다.
</maml:para><maml:para>OnlinePage: 다른 사용자가 데이터베이스를 사용할 수 있는 동안 데이터 페이지를 온라인으로 복원합니다.
</maml:para><maml:para>OnlineFiles: 다른 사용자가 데이터베이스를 사용할 수 있는 동안 하나 이상의 데이터 파일을 복원합니다. DatabaseFile 또는 DatabaseFileGroup 매개 변수를 설정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">RestoreActionType</command:parameterValue><dev:type><maml:name>RestoreActionType</maml:name><maml:uri /></dev:type><dev:defaultValue>Microsoft.SqlServer.Management.Smo.RestoreActionType.Database</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RestrictedUser</maml:name><maml:description><maml:para>복원된 데이터베이스에 대한 데이터베이스 액세스를 db_owner 고정 데이터베이스 역할과 dbcreator 및 sysadmin 고정 서버 역할로 제한합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue, ByPropertyName)" position="named" aliases=""><maml:name>ServerInstance</maml:name><maml:description><maml:para>SQL Server 인스턴스의 이름입니다. 이 서버 인스턴스는 복원 작업의 대상이 됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>SqlCredential</maml:name><maml:description><maml:para>인증 정보를 저장하여 Windows Azure Blob 저장소 서비스에 대한 인증을 받는 데 필요한 SQL Server 자격 증명입니다. 저장된 인증 정보에는 Windows Azure 저장소 계정 이름과 연결된 액세스 키 값이 포함됩니다. 이 인증 정보는 Windows Azure Blob 저장소 서비스(URL)에서 복원할 때 필요한 매개 변수입니다. 이 매개 변수는 디스크 또는 테이프와 함께 사용되지 않습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSObject</command:parameterValue><dev:type><maml:name>PSObject</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>StandbyFile</maml:name><maml:description><maml:para>SQL Server 인스턴스에 대한 이미징 전략의 일부로 사용되는 실행 취소 파일의 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>StopAtMarkAfterDate</maml:name><maml:description><maml:para>StopAtMarkName 매개 변수로 지정된 표시 이름과 함께 복구 작업의 중지 지점을 결정하는 데 사용할 날짜를 지정합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>StopAtMarkName</maml:name><maml:description><maml:para>표시된 트랜잭션 이후 복구를 중지합니다. StopAtMarkAfterDate 매개 변수와 함께 복구 작업의 중지 지점을 결정하는 데 사용됩니다. 복구 시 표시가 포함된 트랜잭션이 포함됩니다. StopAtMarkAfterDate 값이 설정되지 않은 경우 지정된 이름의 첫 번째 표시에서 복구가 정지합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>StopBeforeMarkAfterDate</maml:name><maml:description><maml:para>StopBeforeMarkName과 함께 복구 작업의 중지 지점을 결정하는 데 사용할 날짜를 지정합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>StopBeforeMarkName</maml:name><maml:description><maml:para>표시된 트랜잭션 전에 복구를 중지합니다. StopBeforeMarkAfterDate 매개 변수와 함께 복구 작업의 중지 지점을 결정하는 데 사용됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ToPointInTime</maml:name><maml:description><maml:para>데이터베이스 로그 복원의 끝점입니다. -RestoreAction 매개 변수가 Log로 설정된 경우에만 적용됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>UnloadTapeAfter</maml:name><maml:description><maml:para>작업이 완료되면 테이프 장치가 되감기고 언로드됩니다. 설정되지 않은 경우 테이프 미디어를 되감고 언로드하지 않습니다. 디스크 백업에는 적용되지 않습니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>Smo.Server</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>
 
복원 작업이 발생해야 하는 SQL Server 인스턴스를 가리키는 SMO.Server 개체입니다.
 
 
</maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>
-------------------------- EXAMPLE 1 --------------------------
                       </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Restore-SqlDatabase -ServerInstance Computer\Instance -Database MyDB -BackupFile "\\share\folder\MyDB.bak"
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 '\\share\folder\MyDB.bak' 파일의 전체 데이터베이스 'MyDB'를 'computer\Instance' 서버 인스턴스로 복원합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
-------------------------- EXAMPLE 2 --------------------------
                       </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Restore-SqlDatabase -ServerInstance Computer\Instance -Database MyDB -BackupFile "\\share\folder\MyDB.trn" -RestoreAction Log
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 '\\share\folder\MyDB.trn' 파일의 'MyDB' 데이터베이스의 트랜잭션 로그를 'computer\Instance' 서버 인스턴스로 복원합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
-------------------------- EXAMPLE 3 --------------------------
                       </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Restore-SqlDatabase -ServerInstance Computer\Instance -Database MyDB -BackupFile "\\share\folder\MyDB.bak" -Credential (Get-Credential sa)
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 sa SQL 로그인을 사용하여 '\\share\folder\MyDB.trn' 파일의 'MyDB' 전체 데이터베이스를 'Computer\Instance' 서버 인스턴스로 복원합니다. 이 명령은 SQL 인증을 완료하기 위해 암호를 묻습니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
-------------------------- EXAMPLE 4 --------------------------
                       </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Restore-SqlDatabase -ServerInstance Computer\Instance -Database MyDB -BackupFile "\\share\folder\MyDB.trn" -RestoreAction Log -NoRecovery
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 NORECOVERY 옵션을 사용하여 '\\share\folder\MyDB.trn' 파일의 'MyDB' 데이터베이스의 트랜잭션 로그를 'Computer\Instance' 서버 인스턴스로 복원합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
-------------------------- EXAMPLE 5 --------------------------
                       </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Restore-SqlDatabase -ServerInstance Computer\Instance -Database MyDB -BackupFile "\\share\folder\MyDB.trn" -RestoreAction Log -ToPointInTime "Nov 11, 2011 11:11 AM"
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'MyDB' 데이터베이스의 트랜잭션 로그를 -ToPointInTime 매개 변수에 전달된 날짜인 'Nov 11, 2011 11:11 AM'까지 복원합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
-------------------------- EXAMPLE 6 --------------------------
                       </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;$RelocateData = New-Object Microsoft.SqlServer.Management.Smo.RelocateFile("MyDB_Data", "c:\MySQLServer\MyDB.mdf")
$RelocateLog = New-Object Microsoft.SqlServer.Management.Smo.RelocateFile("MyDB_Log", "c:\MySQLServer\MyDB.ldf")
Restore-SqlDatabase -ServerInstance Computer\Instance -Database MyDB -BackupFile "\\share\folder\MyDB.trn" -RelocateFile @($RelocateData,$RelocateLog)
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 예에서는 전체 데이터베이스 'MyDB'를 'Computer\Instance' 서버 인스턴스로 복원하고 데이터 및 로그 파일의 위치를 다시 지정합니다. 이 예에서는 이동할 각 파일에 대해 Microsoft.SqlServer.Management.Smo.RelocateFile의 인스턴스인 '$RelocateData' 및 '$RelocateLog'를 생성합니다. 각 생성자에는 두 개의 인수, 즉, 대상 서버에 파일이 위치할 물리적 위치와 파일의 논리적 이름이 있습니다. 이러한 RelocateFile 개체는 Restore-SqlDatabase cmdlet의 -RelocateFile 매개 변수로 전달됩니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
-------------------------- EXAMPLE 7 --------------------------
                       </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;$tapeDevice = New-Object Microsoft.Sqlserver.Management.Smo.BackupDeviceItem("\\.\tape0", "Tape")
Restore-SqlDatabase -ServerInstance Computer\Instance -Database MyDB -BackupDevice $tapeDevice
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 예에서는 이름이 '\\.\tape0'인 테이프 장치에서 'MyDB' 데이터베이스를 'computer\Instance' 서버 인스턴스로 복원합니다. 이 예에서는 이 장치를 나타내기 위해 Microsoft.Sqlserver.Management.Smo.BackupDeviceItem 인스턴스를 생성합니다. 생성자에는 두 개의 인수, 즉, 백업 장치의 이름('\\.\tape0')과 백업 장치의 유형('Tape')이 있습니다. 그런 다음 이 BackupDeviceItem 개체는 Restore-SqlDatabase cmdlet의 -BackupDevice 매개 변수로 전달됩니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
-------------------------- EXAMPLE 8 --------------------------
                       </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Restore-SqlDatabase -ServerInstance Computer\Instance -Database MyDB -BackupFile "https://mystorageaccountname.blob.core.windows.net/container/MyDB.bak" https://mystorageaccountname.blob.core.windows.net/container/MyDB.bak" -SqlCredential "mySqlCredential"
 
</dev:code><dev:remarks><maml:para>이 명령은 Windows Azure Blob 저장소 서비스의 파일에서 'computer\Instance' 서버 인스턴스로 전체 데이터베이스 'MyDB'를 복원합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText></maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Resume-SqlAvailabilityDatabase</command:name><maml:description><maml:para>가용성 데이터베이스에서 데이터 이동을 재개합니다. </maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Resume</command:verb><command:noun>SqlAvailabilityDatabase</command:noun><dev:version /></command:details><maml:description><maml:para>Resume-SqlAvailabilityDatabase cmdlet은 가용성 그룹에서 데이터 이동을 재개합니다. 주 데이터베이스를 재개하면 해당 보조 데이터베이스의 데이터 이동이 재개됩니다. 특정 보조 데이터베이스를 재개하면 해당 데이터베이스에서만 데이터 이동이 재개됩니다.
</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Resume-SqlAvailabilityDatabase</maml:name><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>가용성 데이터베이스의 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Resume-SqlAvailabilityDatabase</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>데이터 이동을 재개할 주 또는 보조 데이터베이스의 AvailabilityDatabase 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Target</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>데이터 이동을 재개할 주 또는 보조 데이터베이스의 AvailabilityDatabase 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Target</command:parameterValue><dev:type><maml:name>Target</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>가용성 데이터베이스의 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>Microsoft.SqlServer.Management.Smo.AvailabilityDatabase</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>SQL Server Books Online: Resuming a Database in an Availability Group (SQL Server)</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>
 
 
 
                -------------------------- EXAMPLE 1 --------------------------
 
 
 
            </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Resume-SqlAvailabilityDatabase -Path SQLSERVER:\Sql\Computer\Instance\AvailabilityGroups\MyAg\AvailabilityDatabases\MyDatabase
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'MyAg' 가용성 그룹의 'MyDatabase' 가용성 데이터베이스에 대한 데이터 동기화를 재개합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
 
 
 
                -------------------------- EXAMPLE 2 --------------------------
 
 
 
            </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;dir SQLSERVER:\Sql\Computer\Instance\AvailabilityGroups\AgName\AvailabilityDatabases | Resume-SqlAvailabilityDatabase
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'Computer\Instance'라는 서버 인스턴스에 있는 'MyAg' 가용성 그룹의 모든 가용성 데이터베이스에 대한 데이터 동기화를 재개합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
 
 
 
                -------------------------- EXAMPLE 3 --------------------------
 
 
 
            </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Resume-SqlAvailabilityDatabase -Path SQLSERVER:\Sql\Computer\Instance\AvailabilityGroups\MyAg\AvailabilityDatabases\MyDatabase -Script
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'Computer\Instance'라는 서버 인스턴스에 있는 'MyAg' 가용성 그룹의 'MyDatabase' 가용성 데이터베이스에 대한 데이터 동기화를 재개하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText></maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Set-SqlAuthenticationMode</command:name><maml:description><maml:para>대상 SQL Server 인스턴스의 인증 모드를 구성합니다.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Set</command:verb><command:noun>SqlAuthenticationMode</command:noun><dev:version /></command:details><maml:description><maml:para>대상 SQL Server 인스턴스의 인증 모드를 구성합니다.</maml:para><maml:para>SQL Server 클라우드 어댑터가 SQL Server 인스턴스를 호스팅하는 컴퓨터에서 실행되고 있어야 하며 액세스 가능해야 합니다.</maml:para><maml:para>이 cmdlet은 다음과 같은 작업 모드를 지원합니다.</maml:para><maml:para>1. 인스턴스 PowerShell 경로 지정</maml:para><maml:para>2. 서버 개체 지정</maml:para><maml:para>3. 대상 SQL Server 인스턴스의 ServerInstance 지정</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Set-SqlAuthenticationMode</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases=""><maml:name>Credential</maml:name><maml:description><maml:para>대상 컴퓨터에서 Windows 관리자 자격 증명을 사용하여 사용자 계정을 지정합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Mode</maml:name><maml:description><maml:para>대상 SQL Server 인스턴스에서 구성될 인증 모드입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">ServerLoginMode</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>SqlCredential</maml:name><maml:description><maml:para>"Mixed Mode" 인증을 사용하도록 설정된 경우 대상 SQL Server 인스턴스에서 만들어질 관리자 자격 증명입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AcceptSelfSignedCertificate</maml:name><maml:description><maml:para>이 cmdlet이 사용자에게 확인 메시지를 표시하지 않고 대상 컴퓨터의 자체 서명된 SQL Server 클라우드 어댑터 인증서를 자동으로 적용하도록 합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ForceServiceRestart</maml:name><maml:description><maml:para>사용자에게 확인 메시지를 표시하지 않고 필요한 경우 SQL Server 서비스를 다시 시작합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ManagementPublicPort</maml:name><maml:description><maml:para>대상 컴퓨터의 공용 관리 포트입니다. 대상 컴퓨터의 포트가 직접 액세스 가능하지는 않지만 끝점을 통해 노출되는 경우, 즉 다른 포트에 연결해야 하는 경우에 이 매개 변수를 사용해야 합니다.</maml:para><maml:para>SQL Server 클라우드 어댑터는 이 포트에서 액세스 가능해야 합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoServiceRestart</maml:name><maml:description><maml:para>사용자에게 확인 메시지를 표시하지 않고 SQL Server 서비스의 다시 시작을 방지합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>작업을 실행할 SQL Server 인스턴스의 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RetryTimeout</maml:name><maml:description><maml:para>대상 서버에서 명령을 다시 시도하는 기간입니다. 이 제한 시간이 만료되면 다시 시도되지 않습니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Set-SqlAuthenticationMode</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases=""><maml:name>Credential</maml:name><maml:description><maml:para>대상 컴퓨터에서 Windows 관리자 자격 증명을 사용하여 사용자 계정을 지정합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Mode</maml:name><maml:description><maml:para>대상 SQL Server 인스턴스에서 구성될 인증 모드입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">ServerLoginMode</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>SqlCredential</maml:name><maml:description><maml:para>"Mixed Mode" 인증을 사용하도록 설정된 경우 대상 SQL Server 인스턴스에서 만들어질 관리자 자격 증명입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AcceptSelfSignedCertificate</maml:name><maml:description><maml:para>이 cmdlet이 사용자에게 확인 메시지를 표시하지 않고 대상 컴퓨터의 자체 서명된 SQL Server 클라우드 어댑터 인증서를 자동으로 적용하도록 합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ForceServiceRestart</maml:name><maml:description><maml:para>사용자에게 확인 메시지를 표시하지 않고 필요한 경우 SQL Server 서비스를 다시 시작합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ManagementPublicPort</maml:name><maml:description><maml:para>대상 컴퓨터의 공용 관리 포트입니다. 대상 컴퓨터의 포트가 직접 액세스 가능하지는 않지만 끝점을 통해 노출되는 경우, 즉 다른 포트에 연결해야 하는 경우에 이 매개 변수를 사용해야 합니다.</maml:para><maml:para>SQL Server 클라우드 어댑터는 이 포트에서 액세스 가능해야 합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoServiceRestart</maml:name><maml:description><maml:para>사용자에게 확인 메시지를 표시하지 않고 SQL Server 서비스의 다시 시작을 방지합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RetryTimeout</maml:name><maml:description><maml:para>대상 서버에서 명령을 다시 시도하는 기간입니다. 이 제한 시간이 만료되면 다시 시도되지 않습니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="named" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>대상 인스턴스의 서버 개체입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="true">Server[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Set-SqlAuthenticationMode</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases=""><maml:name>Credential</maml:name><maml:description><maml:para>대상 컴퓨터에서 Windows 관리자 자격 증명을 사용하여 사용자 계정을 지정합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Mode</maml:name><maml:description><maml:para>대상 SQL Server 인스턴스에서 구성될 인증 모드입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">ServerLoginMode</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>SqlCredential</maml:name><maml:description><maml:para>"Mixed Mode" 인증을 사용하도록 설정된 경우 대상 SQL Server 인스턴스에서 만들어질 관리자 자격 증명입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AcceptSelfSignedCertificate</maml:name><maml:description><maml:para>이 cmdlet이 사용자에게 확인 메시지를 표시하지 않고 대상 컴퓨터의 자체 서명된 SQL Server 클라우드 어댑터 인증서를 자동으로 적용하도록 합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ForceServiceRestart</maml:name><maml:description><maml:para>사용자에게 확인 메시지를 표시하지 않고 필요한 경우 SQL Server 서비스를 다시 시작합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ManagementPublicPort</maml:name><maml:description><maml:para>대상 컴퓨터의 공용 관리 포트입니다. 대상 컴퓨터의 포트가 직접 액세스 가능하지는 않지만 끝점을 통해 노출되는 경우, 즉 다른 포트에 연결해야 하는 경우에 이 매개 변수를 사용해야 합니다.</maml:para><maml:para>SQL Server 클라우드 어댑터는 이 포트에서 액세스 가능해야 합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoServiceRestart</maml:name><maml:description><maml:para>사용자에게 확인 메시지를 표시하지 않고 SQL Server 서비스의 다시 시작을 방지합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RetryTimeout</maml:name><maml:description><maml:para>대상 서버에서 명령을 다시 시도하는 기간입니다. 이 제한 시간이 만료되면 다시 시도되지 않습니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue, ByPropertyName)" position="named" aliases=""><maml:name>ServerInstance</maml:name><maml:description><maml:para>이 매개 변수는 작업의 대상이 되는 SQL Server 인스턴스의 이름을 지정합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AcceptSelfSignedCertificate</maml:name><maml:description><maml:para>이 cmdlet이 사용자에게 확인 메시지를 표시하지 않고 대상 컴퓨터의 자체 서명된 SQL Server 클라우드 어댑터 인증서를 자동으로 적용하도록 합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases=""><maml:name>Credential</maml:name><maml:description><maml:para>대상 컴퓨터에서 Windows 관리자 자격 증명을 사용하여 사용자 계정을 지정합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue><dev:type><maml:name>PSCredential</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ForceServiceRestart</maml:name><maml:description><maml:para>사용자에게 확인 메시지를 표시하지 않고 필요한 경우 SQL Server 서비스를 다시 시작합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="named" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>대상 인스턴스의 서버 개체입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="true">Server[]</command:parameterValue><dev:type><maml:name>Server[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ManagementPublicPort</maml:name><maml:description><maml:para>대상 컴퓨터의 공용 관리 포트입니다. 대상 컴퓨터의 포트가 직접 액세스 가능하지는 않지만 끝점을 통해 노출되는 경우, 즉 다른 포트에 연결해야 하는 경우에 이 매개 변수를 사용해야 합니다.</maml:para><maml:para>SQL Server 클라우드 어댑터는 이 포트에서 액세스 가능해야 합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Mode</maml:name><maml:description><maml:para>대상 SQL Server 인스턴스에서 구성될 인증 모드입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">ServerLoginMode</command:parameterValue><dev:type><maml:name>ServerLoginMode</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>NoServiceRestart</maml:name><maml:description><maml:para>사용자에게 확인 메시지를 표시하지 않고 SQL Server 서비스의 다시 시작을 방지합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>작업을 실행할 SQL Server 인스턴스의 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>RetryTimeout</maml:name><maml:description><maml:para>대상 서버에서 명령을 다시 시도하는 기간입니다. 이 제한 시간이 만료되면 다시 시도되지 않습니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue, ByPropertyName)" position="named" aliases=""><maml:name>ServerInstance</maml:name><maml:description><maml:para>이 매개 변수는 작업의 대상이 되는 SQL Server 인스턴스의 이름을 지정합니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>SqlCredential</maml:name><maml:description><maml:para>"Mixed Mode" 인증을 사용하도록 설정된 경우 대상 SQL Server 인스턴스에서 만들어질 관리자 자격 증명입니다.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue><dev:type><maml:name>PSCredential</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title></maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;CD SQLSERVER:\SQL\Computer\Instance;
Set-SqlAuthenticationMode -Credential $credential  Integrated -ForceServiceRestart  -AcceptSelfSignedCertificate;
 
</dev:code><dev:remarks><maml:para>이 명령은 ‘Computer\Instance’ 서버 인스턴스의 인증 모드를 ‘Integrated’로 구성합니다. 작업이 발생해야 하는 서버 인스턴스를 확인하기 위해 현재 작업 디렉터리가 사용됩니다. 사용자에게 확인 메시지를 표시하지 않고 SQL Server 서비스가 자동으로 다시 시작됩니다. 또한 사용자에게 확인 메시지를 표시하지 않고 대상 컴퓨터의 자체 서명된 인증서가 자동으로 적용됩니다.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title></maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>This command retrieves all instances of SQL Server on the machine ‘MachineName’ and configures the authentication mode to ‘Mixed’, with the provided SQL credentials for each one of them. The SQL Server service will not be restarted automatically. The self-signed certificate of the target machine will be automatically accepted without prompting the user.
PS C:\&gt;Get-SqlInstance -Credential $credential -MachineName "MachineName" | Set-SqlAuthenticationMode -Credential $credential -Mode Mixed -SqlCredential $sqlCredential -NoServiceRestart  -AcceptSelfSignedCertificate;
 
</dev:code><dev:remarks><maml:para></maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Online Version:</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Set-SqlAvailabilityGroup</command:name><maml:description><maml:para>이 cmdlet은 기존 가용성 그룹의 설정을 수정합니다.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Set</command:verb><command:noun>SqlAvailabilityGroup</command:noun><dev:version /></command:details><maml:description><maml:para>Set-SqlAvailabilityGroup cmdlet은 기존 가용성 그룹에서 AutomatedBackupPreference, FailureConditionLevel 및 HealthCheckTimeout 설정을 수정합니다. 이 cmdlet은 주 복제본을 호스팅하는 서버 인스턴스에서만 실행할 수 있습니다.
</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Set-SqlAvailabilityGroup</maml:name><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>가용성 그룹의 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AutomatedBackupPreference</maml:name><maml:description><maml:para>가용성 그룹에 대해 자동화된 백업 기본 설정입니다. 유효한 옵션은 다음과 같습니다.
</maml:para><maml:para>Primary: 백업이 항상 주 복제본이 있는 곳에서 수행되도록 지정합니다. 그 이유는 차등 백업과 같이 백업이 보조 복제본에서 실행될 경우 사용할 수 없는 기능이 필요한 경우가 많기 때문입니다.
</maml:para><maml:para>SecondaryOnly: 백업이 주 복제본에서 수행되지 않도록 지정합니다. 주 복제본이 유일한 온라인 복제본인 경우에는 백업이 수행되지 않습니다.
</maml:para><maml:para>Secondary: 주 복제본이 유일한 온라인 복제본이 아닐 경우 백업이 보조 복제본에서 발생하도록 지정합니다. 그런 다음 백업이 주 복제본에서 발생합니다.
</maml:para><maml:para>None: 이 옵션은 백업을 수행할 복제본을 선택할 때 사용자가 주/보조 상태를 고려하지 않도록 지정합니다. BackupPriority와 Online/Connected 상태만 함께 고려합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityGroupAutomatedBackupPreference</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>FailureConditionLevel</maml:name><maml:description><maml:para>가용성 그룹의 자동 장애 조치(Failover)를 결정합니다. 유효한 옵션은 다음과 같습니다.
</maml:para><maml:para>OnServerDown: SQL Server 서비스가 중지되는 경우 장애 조치(Failover) 또는 다시 시작합니다.
</maml:para><maml:para>OnServerUnresponsive: 낮은 값의 임의의 조건이 충족되었으며, SQL Server 서비스가 클러스터에 연결되어 있고 "HealthCheckTimeout" 임계값이 초과된 경우, 또는 주 역할의 가용성 복제본이 현재 실패 상태인 경우 장애 조치(Failover) 또는 다시 시작합니다. (HealthCheckTimeout 매개 변수 참조)
</maml:para><maml:para>OnCriticalServerError: 낮은 값의 임의의 조건이 충족되고 내부에서 중요한 서버 오류가 발생하는 경우(메모리 부족 상태, 심각한 쓰기 액세스 위반 또는 과다한 덤핑) 장애 조치(Failover) 또는 다시 시작합니다.
</maml:para><maml:para>OnModerateServerError: 낮은 값의 임의의 조건이 충족되고 일반적인 서버 오류가 발생하는 경우(지속적인 메모리 부족 상태) 자동 장애 조치가 트리거됩니다.
</maml:para><maml:para>OnAnyQualifiedFailureConditions: 낮은 값의 임의의 조건이 충족되고 적합한 실패 조건이 발생하는 경우(엔진의 작업자 스레드가 소진된 경우, 해결할 수 없는 교착 상태가 발견된 경우) 장애 조치(Failover) 또는 다시 시작합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityGroupFailureConditionLevel</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>HealthCheckTimeout</maml:name><maml:description><maml:para>이 시간(밀리초)이 지나면 응답 없는 서버를 비정상 상태로 선언합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Set-SqlAvailabilityGroup</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>수정할 가용성 그룹의 AwailabilityGroup 개체입니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AutomatedBackupPreference</maml:name><maml:description><maml:para>가용성 그룹에 대해 자동화된 백업 기본 설정입니다. 유효한 옵션은 다음과 같습니다.
</maml:para><maml:para>Primary: 백업이 항상 주 복제본이 있는 곳에서 수행되도록 지정합니다. 그 이유는 차등 백업과 같이 백업이 보조 복제본에서 실행될 경우 사용할 수 없는 기능이 필요한 경우가 많기 때문입니다.
</maml:para><maml:para>SecondaryOnly: 백업이 주 복제본에서 수행되지 않도록 지정합니다. 주 복제본이 유일한 온라인 복제본인 경우에는 백업이 수행되지 않습니다.
</maml:para><maml:para>Secondary: 주 복제본이 유일한 온라인 복제본이 아닐 경우 백업이 보조 복제본에서 발생하도록 지정합니다. 그런 다음 백업이 주 복제본에서 발생합니다.
</maml:para><maml:para>None: 이 옵션은 백업을 수행할 복제본을 선택할 때 사용자가 주/보조 상태를 고려하지 않도록 지정합니다. BackupPriority와 Online/Connected 상태만 함께 고려합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityGroupAutomatedBackupPreference</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>FailureConditionLevel</maml:name><maml:description><maml:para>가용성 그룹의 자동 장애 조치(Failover)를 결정합니다. 유효한 옵션은 다음과 같습니다.
</maml:para><maml:para>OnServerDown: SQL Server 서비스가 중지되는 경우 장애 조치(Failover) 또는 다시 시작합니다.
</maml:para><maml:para>OnServerUnresponsive: 낮은 값의 임의의 조건이 충족되었으며, SQL Server 서비스가 클러스터에 연결되어 있고 "HealthCheckTimeout" 임계값이 초과된 경우, 또는 주 역할의 가용성 복제본이 현재 실패 상태인 경우 장애 조치(Failover) 또는 다시 시작합니다. (HealthCheckTimeout 매개 변수 참조)
</maml:para><maml:para>OnCriticalServerError: 낮은 값의 임의의 조건이 충족되고 내부에서 중요한 서버 오류가 발생하는 경우(메모리 부족 상태, 심각한 쓰기 액세스 위반 또는 과다한 덤핑) 장애 조치(Failover) 또는 다시 시작합니다.
</maml:para><maml:para>OnModerateServerError: 낮은 값의 임의의 조건이 충족되고 일반적인 서버 오류가 발생하는 경우(지속적인 메모리 부족 상태) 자동 장애 조치가 트리거됩니다.
</maml:para><maml:para>OnAnyQualifiedFailureConditions: 낮은 값의 임의의 조건이 충족되고 적합한 실패 조건이 발생하는 경우(엔진의 작업자 스레드가 소진된 경우, 해결할 수 없는 교착 상태가 발견된 경우) 장애 조치(Failover) 또는 다시 시작합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityGroupFailureConditionLevel</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>HealthCheckTimeout</maml:name><maml:description><maml:para>이 시간(밀리초)이 지나면 응답 없는 서버를 비정상 상태로 선언합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AutomatedBackupPreference</maml:name><maml:description><maml:para>가용성 그룹에 대해 자동화된 백업 기본 설정입니다. 유효한 옵션은 다음과 같습니다.
</maml:para><maml:para>Primary: 백업이 항상 주 복제본이 있는 곳에서 수행되도록 지정합니다. 그 이유는 차등 백업과 같이 백업이 보조 복제본에서 실행될 경우 사용할 수 없는 기능이 필요한 경우가 많기 때문입니다.
</maml:para><maml:para>SecondaryOnly: 백업이 주 복제본에서 수행되지 않도록 지정합니다. 주 복제본이 유일한 온라인 복제본인 경우에는 백업이 수행되지 않습니다.
</maml:para><maml:para>Secondary: 주 복제본이 유일한 온라인 복제본이 아닐 경우 백업이 보조 복제본에서 발생하도록 지정합니다. 그런 다음 백업이 주 복제본에서 발생합니다.
</maml:para><maml:para>None: 이 옵션은 백업을 수행할 복제본을 선택할 때 사용자가 주/보조 상태를 고려하지 않도록 지정합니다. BackupPriority와 Online/Connected 상태만 함께 고려합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityGroupAutomatedBackupPreference</command:parameterValue><dev:type><maml:name>AvailabilityGroupAutomatedBackupPreference</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>FailureConditionLevel</maml:name><maml:description><maml:para>가용성 그룹의 자동 장애 조치(Failover)를 결정합니다. 유효한 옵션은 다음과 같습니다.
</maml:para><maml:para>OnServerDown: SQL Server 서비스가 중지되는 경우 장애 조치(Failover) 또는 다시 시작합니다.
</maml:para><maml:para>OnServerUnresponsive: 낮은 값의 임의의 조건이 충족되었으며, SQL Server 서비스가 클러스터에 연결되어 있고 "HealthCheckTimeout" 임계값이 초과된 경우, 또는 주 역할의 가용성 복제본이 현재 실패 상태인 경우 장애 조치(Failover) 또는 다시 시작합니다. (HealthCheckTimeout 매개 변수 참조)
</maml:para><maml:para>OnCriticalServerError: 낮은 값의 임의의 조건이 충족되고 내부에서 중요한 서버 오류가 발생하는 경우(메모리 부족 상태, 심각한 쓰기 액세스 위반 또는 과다한 덤핑) 장애 조치(Failover) 또는 다시 시작합니다.
</maml:para><maml:para>OnModerateServerError: 낮은 값의 임의의 조건이 충족되고 일반적인 서버 오류가 발생하는 경우(지속적인 메모리 부족 상태) 자동 장애 조치가 트리거됩니다.
</maml:para><maml:para>OnAnyQualifiedFailureConditions: 낮은 값의 임의의 조건이 충족되고 적합한 실패 조건이 발생하는 경우(엔진의 작업자 스레드가 소진된 경우, 해결할 수 없는 교착 상태가 발견된 경우) 장애 조치(Failover) 또는 다시 시작합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityGroupFailureConditionLevel</command:parameterValue><dev:type><maml:name>AvailabilityGroupFailureConditionLevel</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>HealthCheckTimeout</maml:name><maml:description><maml:para>이 시간(밀리초)이 지나면 응답 없는 서버를 비정상 상태로 선언합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>수정할 가용성 그룹의 AwailabilityGroup 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">T</command:parameterValue><dev:type><maml:name>T</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>가용성 그룹의 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>
 
 
 
                -------------------------- EXAMPLE 1 --------------------------
 
 
 
            </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Set-SqlAvailabilityGroup -Path SQLSERVER:\Sql\PrimaryServer\InstanceName\AvailabilityGroups\MyAG -HealthCheckTimeout 120000
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'MyAg' 가용성 그룹의 HealhCheckTimeout 속성을 120,000밀리초(2분)로 설정합니다. 이 시간 동안 주 서버에 응답이 없는 경우 자동 장애 조치(Failover)가 활성화되고 자동 장애 조치(Failover)가 시작됩니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
 
 
 
                -------------------------- EXAMPLE 2 --------------------------
 
 
 
            </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Set-SqlAvailabilityGroup -Path SQLSERVER:\Sql\PrimaryServer\InstanceName\AvailabilityGroups\MyAg -AutomatedBackupPreference SecondaryOnly
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'MyAg' 가용성 그룹의 AutomatedBackupPreference 속성을 'SecondaryOnly'로 설정합니다. 주 복제본에서는 이 가용성 그룹의 데이터베이스 자동 백업이 절대 발생하지 않지만 가장 높은 백업 우선 순위로 보조 복제본으로 리디렉션됩니다(가용성 복제본의 BackupPriority 속성 참조).
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
 
 
 
                -------------------------- EXAMPLE 3 --------------------------
 
 
 
            </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Set-SqlAvailabilityGroup -Path SQLSERVER:\Sql\PrimaryServer\InstanceName\AvailabilityGroups\MyAg -FailureConditionLevel OnServerDown
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'MyAg' 가용성 그룹의 FailureConditionLevel 속성을 'OnServerDown'으로 설정합니다. 이는 주 복제본을 호스팅하는 서버 인스턴스가 오프라인이 되고 자동 장애 조치(Failover)가 활성화될 경우 자동 장애 조치(Failover)가 시작됨을 의미합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText></maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Set-SqlAvailabilityGroupListener</command:name><maml:description><maml:para>이 cmdlet은 기존 가용성 그룹 수신기의 포트 설정을 수정합니다.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Set</command:verb><command:noun>SqlAvailabilityGroupListener</command:noun><dev:version /></command:details><maml:description><maml:para>Set-SqlAvailabilityGroupListener cmdlet은 기존 가용성 그룹 수신기의 포트 설정을 수정합니다. 이 cmdlet은 주 복제본을 호스팅하는 서버 인스턴스에서만 실행할 수 있습니다.
</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Set-SqlAvailabilityGroupListener</maml:name><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>가용성 그룹 수신기의 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Port</maml:name><maml:description><maml:para>수신기가 연결을 수신하는 데 사용할 TCP 포트입니다. 기본 포트는 TCP 포트 1433입니다. 보안 문제가 있는 경우에는 다른 포트 번호를 사용하는 것이 좋습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Set-SqlAvailabilityGroupListener</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>수정할 수신기의 SMO AvailabilityGroupListener 개체입니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Port</maml:name><maml:description><maml:para>수신기가 연결을 수신하는 데 사용할 TCP 포트입니다. 기본 포트는 TCP 포트 1433입니다. 보안 문제가 있는 경우에는 다른 포트 번호를 사용하는 것이 좋습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>수정할 수신기의 SMO AvailabilityGroupListener 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">T</command:parameterValue><dev:type><maml:name>T</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>가용성 그룹 수신기의 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Port</maml:name><maml:description><maml:para>수신기가 연결을 수신하는 데 사용할 TCP 포트입니다. 기본 포트는 TCP 포트 1433입니다. 보안 문제가 있는 경우에는 다른 포트 번호를 사용하는 것이 좋습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue>1433</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>Microsoft.SqlServer.Management.Smo.AvailabilityGroupListener</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>
 
 
 
                -------------------------- EXAMPLE 1 --------------------------
 
 
 
            </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Set-SqlAvailabilityGroupListener -Port 1535 -Path SQLSERVER:\Sql\PrimaryServer\InstanceName\AvailabilityGroups\MyAg\AvailabilityGroupListeners\MyListener
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'MyListener'라는 가용성 그룹 수신기에 대한 포트 번호를 1535로 설정합니다. 이 포트는 수신기에 대한 연결을 수신하는 데 사용됩니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
 
 
 
                -------------------------- EXAMPLE 2 --------------------------
 
 
 
            </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Set-SqlAvailabilityGroupListener -Port 1535 -Script -Path SQLSERVER:\Sql\PrimaryServer\InstanceName\AvailabilityGroups\MyAg\AvailabilityGroupListeners\MyListener
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'MyListener'라는 가용성 그룹 수신기의 포트 번호를 1535로 설정하는 Transact-SQL 스크립트를 생성합니다. 이 명령으로 포트 번호가 실제로 변경되는 것은 아닙니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText></maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Set-SqlAvailabilityReplica</command:name><maml:description><maml:para>이 cmdlet은 기존 가용성 복제본의 설정을 수정합니다.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Set</command:verb><command:noun>SqlAvailabilityReplica</command:noun><dev:version /></command:details><maml:description><maml:para>Set-SqlAvailabilityReplica cmdlet은 가용성 복제기의 다양한 속성을 설정 또는 수정합니다. 이 cmdlet은 주 복제본을 호스팅하는 서버 인스턴스에서만 실행할 수 있습니다.
</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Set-SqlAvailabilityReplica</maml:name><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>가용성 복제본의 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AvailabilityMode</maml:name><maml:description><maml:para>복제본의 가용성 모드입니다. 사용할 수 있는 옵션은 다음과 같습니다. SynchronousCommit 또는 AsynchronousCommit.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityReplicaAvailabilityMode</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupPriority</maml:name><maml:description><maml:para>이 옵션은 0부터 100까의 정수이며 복제본 백업 수행의 원하는 우선 순위를 나타냅니다. 사용 가능한 온라인 복제본 집합 중에서 우선 순위가 가장 높은 복제본이 백업 수행 대상으로 선택됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ConnectionModeInPrimaryRole</maml:name><maml:description><maml:para>주 역할에서 가용성 복제본이 연결을 처리할 방법입니다. 유효한 설정은 다음과 같습니다.
</maml:para><maml:para>AllowReadWriteConnections: 읽기/쓰기 연결 허용
</maml:para><maml:para>AllowAllConnections: 모든 연결 허용
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityReplicaConnectionModeInPrimaryRole</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ConnectionModeInSecondaryRole</maml:name><maml:description><maml:para>보조 역할에서 가용성 복제본이 연결을 처리할 방법입니다. 유효한 설정은 다음과 같습니다.
</maml:para><maml:para>AllowNoConnections: 연결 허용 안 함
</maml:para><maml:para>AllowReadIntentConnectionsOnly: 읽기 전용 연결만 허용
</maml:para><maml:para>AllowAllConnections: 모든 연결 허용
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityReplicaConnectionModeInSecondaryRole</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>EndpointUrl</maml:name><maml:description><maml:para>TCP://System-address:port 형식의 끝점의 URL
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>FailoverMode</maml:name><maml:description><maml:para>복제본의 장애 조치(Failover) 모드입니다. 사용할 수 있는 옵션은 다음과 같습니다. Manual 또는 Automatic.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityReplicaFailoverMode</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ReadonlyRoutingConnectionUrl</maml:name><maml:description><maml:para>읽기 전용 연결을 위해 복제본으로 라우팅할 때 사용할 포트와 연결 정규화된 도메인 이름(FQDN)입니다. 예를 들면 다음과 같습니다.
</maml:para><maml:para>TCP://DBSERVER8.manufacturing.Adventure-Works.com:7024
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ReadOnlyRoutingList</maml:name><maml:description><maml:para>이 가용성 복제본을 통해 읽기 전용 연결로 리디렉션할 경우 사용할 연결 디렉터의 프로브 순서를 나타내는 복제 서버 이름을 순서대로 나열한 목록입니다. 이 목록은 가용성 복제본이 가용성 그룹의 현재 주 복제본일 경우에 적용됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>SessionTimeout</maml:name><maml:description><maml:para>연결이 실패한 것으로 간주하기 전에 주 복제본과 이 복제본 사이의 응답을 대기하는 시간(초)입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Set-SqlAvailabilityReplica</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>수정할 복제본의 AvailabilityReplica 개체입니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AvailabilityMode</maml:name><maml:description><maml:para>복제본의 가용성 모드입니다. 사용할 수 있는 옵션은 다음과 같습니다. SynchronousCommit 또는 AsynchronousCommit.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityReplicaAvailabilityMode</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupPriority</maml:name><maml:description><maml:para>이 옵션은 0부터 100까의 정수이며 복제본 백업 수행의 원하는 우선 순위를 나타냅니다. 사용 가능한 온라인 복제본 집합 중에서 우선 순위가 가장 높은 복제본이 백업 수행 대상으로 선택됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ConnectionModeInPrimaryRole</maml:name><maml:description><maml:para>주 역할에서 가용성 복제본이 연결을 처리할 방법입니다. 유효한 설정은 다음과 같습니다.
</maml:para><maml:para>AllowReadWriteConnections: 읽기/쓰기 연결 허용
</maml:para><maml:para>AllowAllConnections: 모든 연결 허용
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityReplicaConnectionModeInPrimaryRole</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ConnectionModeInSecondaryRole</maml:name><maml:description><maml:para>보조 역할에서 가용성 복제본이 연결을 처리할 방법입니다. 유효한 설정은 다음과 같습니다.
</maml:para><maml:para>AllowNoConnections: 연결 허용 안 함
</maml:para><maml:para>AllowReadIntentConnectionsOnly: 읽기 전용 연결만 허용
</maml:para><maml:para>AllowAllConnections: 모든 연결 허용
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityReplicaConnectionModeInSecondaryRole</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>EndpointUrl</maml:name><maml:description><maml:para>TCP://System-address:port 형식의 끝점의 URL
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>FailoverMode</maml:name><maml:description><maml:para>복제본의 장애 조치(Failover) 모드입니다. 사용할 수 있는 옵션은 다음과 같습니다. Manual 또는 Automatic.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityReplicaFailoverMode</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ReadonlyRoutingConnectionUrl</maml:name><maml:description><maml:para>읽기 전용 연결을 위해 복제본으로 라우팅할 때 사용할 포트와 연결 정규화된 도메인 이름(FQDN)입니다. 예를 들면 다음과 같습니다.
</maml:para><maml:para>TCP://DBSERVER8.manufacturing.Adventure-Works.com:7024
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ReadOnlyRoutingList</maml:name><maml:description><maml:para>이 가용성 복제본을 통해 읽기 전용 연결로 리디렉션할 경우 사용할 연결 디렉터의 프로브 순서를 나타내는 복제 서버 이름을 순서대로 나열한 목록입니다. 이 목록은 가용성 복제본이 가용성 그룹의 현재 주 복제본일 경우에 적용됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>SessionTimeout</maml:name><maml:description><maml:para>연결이 실패한 것으로 간주하기 전에 주 복제본과 이 복제본 사이의 응답을 대기하는 시간(초)입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AvailabilityMode</maml:name><maml:description><maml:para>복제본의 가용성 모드입니다. 사용할 수 있는 옵션은 다음과 같습니다. SynchronousCommit 또는 AsynchronousCommit.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityReplicaAvailabilityMode</command:parameterValue><dev:type><maml:name>AvailabilityReplicaAvailabilityMode</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>BackupPriority</maml:name><maml:description><maml:para>이 옵션은 0부터 100까의 정수이며 복제본 백업 수행의 원하는 우선 순위를 나타냅니다. 사용 가능한 온라인 복제본 집합 중에서 우선 순위가 가장 높은 복제본이 백업 수행 대상으로 선택됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ConnectionModeInPrimaryRole</maml:name><maml:description><maml:para>주 역할에서 가용성 복제본이 연결을 처리할 방법입니다. 유효한 설정은 다음과 같습니다.
</maml:para><maml:para>AllowReadWriteConnections: 읽기/쓰기 연결 허용
</maml:para><maml:para>AllowAllConnections: 모든 연결 허용
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityReplicaConnectionModeInPrimaryRole</command:parameterValue><dev:type><maml:name>AvailabilityReplicaConnectionModeInPrimaryRole</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ConnectionModeInSecondaryRole</maml:name><maml:description><maml:para>보조 역할에서 가용성 복제본이 연결을 처리할 방법입니다. 유효한 설정은 다음과 같습니다.
</maml:para><maml:para>AllowNoConnections: 연결 허용 안 함
</maml:para><maml:para>AllowReadIntentConnectionsOnly: 읽기 전용 연결만 허용
</maml:para><maml:para>AllowAllConnections: 모든 연결 허용
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityReplicaConnectionModeInSecondaryRole</command:parameterValue><dev:type><maml:name>AvailabilityReplicaConnectionModeInSecondaryRole</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>EndpointUrl</maml:name><maml:description><maml:para>TCP://System-address:port 형식의 끝점의 URL
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>FailoverMode</maml:name><maml:description><maml:para>복제본의 장애 조치(Failover) 모드입니다. 사용할 수 있는 옵션은 다음과 같습니다. Manual 또는 Automatic.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AvailabilityReplicaFailoverMode</command:parameterValue><dev:type><maml:name>AvailabilityReplicaFailoverMode</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>수정할 복제본의 AvailabilityReplica 개체입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">T</command:parameterValue><dev:type><maml:name>T</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>가용성 복제본의 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ReadonlyRoutingConnectionUrl</maml:name><maml:description><maml:para>읽기 전용 연결을 위해 복제본으로 라우팅할 때 사용할 포트와 연결 정규화된 도메인 이름(FQDN)입니다. 예를 들면 다음과 같습니다.
</maml:para><maml:para>TCP://DBSERVER8.manufacturing.Adventure-Works.com:7024
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>ReadOnlyRoutingList</maml:name><maml:description><maml:para>이 가용성 복제본을 통해 읽기 전용 연결로 리디렉션할 경우 사용할 연결 디렉터의 프로브 순서를 나타내는 복제 서버 이름을 순서대로 나열한 목록입니다. 이 목록은 가용성 복제본이 가용성 그룹의 현재 주 복제본일 경우에 적용됩니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>SessionTimeout</maml:name><maml:description><maml:para>연결이 실패한 것으로 간주하기 전에 주 복제본과 이 복제본 사이의 응답을 대기하는 시간(초)입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue><dev:type><maml:name>Int32</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>Microsoft.SqlServer.Management.Smo.AvailabilityReplica</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>
 
수정할 가용성 복제본입니다.
 
 
</maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>
  
-------------------------- EXAMPLE 1 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Set-SqlAvailabilityReplica -AvailabilityMode "SynchronousCommit" -FailoverMode "Automatic" -Path SQLSERVER:\Sql\PrimaryServer\InstanceName\AvailabilityGroups\MyAg\AvailabilityReplicas\MyReplica
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'MyAg' 가용성 그룹의 'MyReplica' 복제본이 동기-커밋 가용성 모드를 사용하고 자동 장애 조치(Failover)를 지원하도록 수정합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
  
-------------------------- EXAMPLE 2 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Set-SqlAvailabilityReplica -AvailabilityMode "AsynchronousCommit" -FailoverMode "Manual" -Path SQLSERVER:\Sql\PrimaryServer\InstanceName\AvailabilityGroups\MyAg\AvailabilityReplicas\MyReplica
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'MyAg' 가용성 그룹의 'MyReplica' 복제본이 비동기 커밋 가용성 모드를 사용하고 강제 수동 장애 조치만 지원하도록 수정합니다(데이터가 손실될 수 있음).
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
  
-------------------------- EXAMPLE 3 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Set-SqlAvailabilityReplica -ConnectionModeInSecondaryRole "AllowAllConnections" -Path SQLSERVER:\Sql\PrimaryServer\InstanceName\AvailabilityGroups\MyAg\AvailabilityReplicas\MyReplica
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'MyAg' 가용성 그룹의 'MyReplica' 복제본이 보조 역할에서 모든 연결을 허용하도록 수정합니다. 읽기 전용 데이터 처리 워크로드를 보조 복제본으로 오프로드하려는 경우 유용합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
  
-------------------------- EXAMPLE 4 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Set-Location SQLSERVER:\SQL\PrimaryServer\default\AvailabilityGroups\MyAg
$primaryReplica = Get-Item "AvailabilityReplicas\PrimaryServer"
$secondaryReplica = Get-Item "AvailabilityReplicas\SecondaryServer"
 
Set-SqlAvailabilityReplica -ReadOnlyRoutingConnectionUrl "TCP://PrimaryServer.domain.com:5022" -InputObject $primaryReplica
Set-SqlAvailabilityReplica -ReadOnlyRoutingConnectionUrl "TCP://SecondaryServer.domain.com:5022" -InputObject $secondaryReplica
Set-SqlAvailabilityReplica -ReadOnlyRoutingList "SecondaryServer","PrimaryServer" -InputObject $primaryReplica
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 예에서는 읽기 전용 라우팅을 위해 가용성 그룹에 주 복제본과 하나의 보조 복제본을 구성합니다. ConnectionModeInSecondaryRole 옵션이 AllowAllConnections 또는 AllowReadIntentConnectionsOnly로 설정된 경우, 클라이언트가 가상 네트워크 이름을 통해 가용성 그룹에 연결할 경우 읽기 전용 라우팅에서 보조 복제본이 읽기 요청을 수신 및 승인하도록 허용합니다. 먼저, 이 예에서는 각 복제본에 읽기 전용 라우팅 URL을 할당합니다. 그런 다음 주 복제본에 읽기 전용 라우팅 목록을 설정합니다. 연결 문자열에 "ReadOnly" 속성이 설정된 연결은 보조 복제본으로 리디렉션됩니다. 이 보조 복제본을 읽을 수 없는 경우(ConnectionModeInSecondaryRole 설정으로 확인) 연결이 주 복제본으로 다시 디렉션됩니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
  
-------------------------- EXAMPLE 5 --------------------------
  
</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>C:\PS&gt;Set-SqlAvailabilityReplica -BackupPriority 60 -Path SQLSERVER:\Sql\Computer\Instance\AvailabilityGroups\MyAg\AvailabilityReplicas\MyReplica
 
 
</dev:code><dev:remarks><maml:para>설명
</maml:para><maml:para>-----------
</maml:para><maml:para>이 명령은 'MyReplica' 가용성 복제본의 백업 우선 순위를 60으로 설정합니다. 이 우선 순위는 어느 복제본이 가용성 그룹의 데이터베이스에서 자동 백업 요청을 지원해야 하는지를 결정하기 위해(우선 순위가 가장 높은 복제본이 선택됨) 주 복제본을 호스팅하는 서버 인스턴스가 사용합니다. 이 우선 순위는 1부터 100까지의 임의의 숫자일 수 있습니다. 우선 순위 0은 백업 요청 지원을 위한 후보로 해당 복제본을 고려하지 않아야 함을 나타냅니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText></maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Set-SqlCredential</command:name><maml:description><maml:para>SQL 자격 증명 개체의 속성을 설정합니다.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Set</command:verb><command:noun>SqlCredential</command:noun><dev:version /></command:details><maml:description><maml:para>이 cmdlet을 사용하여 SQL 자격 증명 개체에 대한 ID 및 암호 속성을 설정할 수 있습니다. 이 cmdlet은 다음의 두 가지 작업 모드를 지원합니다.
 
1. –path 매개 변수를 사용하는 자격 증명 이름을 비롯한 자격 증명의 경로 또는 위치 지정
 
2. –InputObject를 사용하여 개체에 대한 Smo.Credential 개체를 전달
</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Set-SqlCredential</maml:name><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>이 작업을 수행하려는 자격 증명에 대한 경로입니다. 예를 들면 다음과 같습니다. SQLSERVER:\SQL\Computer\Instance\Credentials\Credential
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>Identity</maml:name><maml:description><maml:para>리소스 SQL Server에 대한 사용자 또는 계정 이름을 지정하려면 인증해야 합니다. Windows Azure 저장소 서비스의 경우 Windows Azure 저장소 계정의 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases=""><maml:name>Secret</maml:name><maml:description><maml:para>이 매개 변수를 사용하여 사용자 또는 계정의 암호를 지정합니다. Windows Azure 저장소 서비스의 경우 Windows Azure 저장소 계정의 액세스 키 값입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">SecureString</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Set-SqlCredential</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>입력 자격 증명 개체입니다. 이 개체는 Get-SqlCredential cmdlet을 사용하여 검색할 수 있습니다.
</maml:para></maml:description></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>Identity</maml:name><maml:description><maml:para>리소스 SQL Server에 대한 사용자 또는 계정 이름을 지정하려면 인증해야 합니다. Windows Azure 저장소 서비스의 경우 Windows Azure 저장소 계정의 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases=""><maml:name>Secret</maml:name><maml:description><maml:para>이 매개 변수를 사용하여 사용자 또는 계정의 암호를 지정합니다. Windows Azure 저장소 서비스의 경우 Windows Azure 저장소 계정의 액세스 키 값입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">SecureString</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases=""><maml:name>Identity</maml:name><maml:description><maml:para>리소스 SQL Server에 대한 사용자 또는 계정 이름을 지정하려면 인증해야 합니다. Windows Azure 저장소 서비스의 경우 Windows Azure 저장소 계정의 이름입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>입력 자격 증명 개체입니다. 이 개체는 Get-SqlCredential cmdlet을 사용하여 검색할 수 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">T</command:parameterValue><dev:type><maml:name>T</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>이 작업을 수행하려는 자격 증명에 대한 경로입니다. 예를 들면 다음과 같습니다. SQLSERVER:\SQL\Computer\Instance\Credentials\Credential
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases=""><maml:name>Secret</maml:name><maml:description><maml:para>이 매개 변수를 사용하여 사용자 또는 계정의 암호를 지정합니다. Windows Azure 저장소 서비스의 경우 Windows Azure 저장소 계정의 액세스 키 값입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">SecureString</command:parameterValue><dev:type><maml:name>SecureString</maml:name><maml:uri /></dev:type><dev:defaultValue></dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>false</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>
 
-------------------------- EXAMPLE 1 --------------------------
 
 
                      </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Set-SqlCredential -Path SQLSERVER:\SQL\Computer\Instance\Credentials\MySqlCredential –Identity "mystorageaccount"
 
 
</dev:code><dev:remarks><maml:para>이 명령은 SQL 자격 증명의 경로를 지정하여 MySqlCredential의 ID를 ‘mystorageaccount’로 설정합니다.
</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
 
-------------------------- EXAMPLE 2 --------------------------
 
 
                      </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;The command retrieves the credential object from the Get-Credential cmdlet and then pipes it to the Set-Sql Credential cmdlet to set the identity of mySqLCrendential to ‘mystorageaccount’.
PS C:\&gt; $cred = Get-SqlCredential -Name MySqlCredential
$cred | Set-SqlCredential –Identity "mystorageaccount"
 
 
</dev:code><dev:remarks></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>
 
-------------------------- EXAMPLE 3--------------------------
 
 
                      </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;The command prompts for the storage access key information and the Set-Sql Credential cmdlet to set the value for SECRET with the input value.
PS C:\&gt; $secret = read-host "Please enter the storage account access key"
PS C:\&gt; Set-SqlCredential –Identity "mystorageaccount" –Secret $secret
 
 
</dev:code><dev:remarks></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Set-SqlHADREndpoint</command:name><maml:description><maml:para>기존 데이터베이스 미러링 끝점의 속성을 설정합니다.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Set</command:verb><command:noun>SqlHADREndpoint</command:noun><dev:version /></command:details><maml:description><maml:para>Set-SqlHadrEndpoint cmdlet을 사용하면 기존 데이터베이스 미러링 끝점의 속성(예: 이름, 상태 또는 인증 속성)을 변경할 수 있습니다.
</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Set-SqlHADREndpoint</maml:name><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases=""><maml:name>Path</maml:name><maml:description><maml:para>데이터베이스 미러링 끝점의 경로입니다. 선택적 매개 변수입니다. 지정하지 않으면 이 매개 변수의 값은 기본적으로 현재 작업 위치입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AuthenticationOrder</maml:name><maml:description><maml:para>끝점이 사용하는 인증의 순서 및 유형입니다. 옵션으로 Certificate, CertificateKerberos , CertificateNegotiate, CertificateNtlm, Kerberos, KerberosCertificate, Negotiate, NegotiateCertificate, Ntlm 및 NtlmCertificate이 있습니다. 지정된 옵션에서 인증서를 요청할 경우 인증서가 이미 끝점과 연결되어 있지 않으면 -Certificate 매개 변수도 설정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">EndpointAuthenticationOrder</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Certificate</maml:name><maml:description><maml:para>연결을 인증하기 위해 끝점이 사용해야 할 인증서의 이름입니다. 먼 끝점에는 지정된 인증서의 개인 키와 일치하는 공개 키를 가진 인증서가 있어야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Encryption</maml:name><maml:description><maml:para>끝점의 암호화 설정입니다. 옵션으로는 Disabled, Supported 또는 Required가 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">EndpointEncryption</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>EncryptionAlgorithm</maml:name><maml:description><maml:para>끝점에서 사용하는 암호화 형식입니다. 옵션으로 Aes, AesRC4, None, RC4 및 RC4Aes가 있습니다.
</maml:para><maml:para>참고: RC4 알고리즘은 이전 버전과의 호환성을 위해서만 지원됩니다. 데이터베이스의 호환성 수준이 90 또는 100인 경우 새 자료는 RC4 또는 RC4_128로만 암호화할 수 있습니다. 이 옵션은 사용하지 않는 것이 좋습니다. 대신 AES 알고리즘 중 하나와 같은 새 알고리즘을 사용하십시오.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">EndpointEncryptionAlgorithm</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>IpAddress</maml:name><maml:description><maml:para>끝점이 수신할 위치의 IP 주소입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">IPAddress</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Owner</maml:name><maml:description><maml:para>끝점의 소유자입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Port</maml:name><maml:description><maml:para>끝점이 연결을 수신하는 데 사용하는 TCP 포트 번호입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>State</maml:name><maml:description><maml:para>끝점의 상태는 Started, Stopped 또는 Disabled가 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">EndpointState</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Set-SqlHADREndpoint</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="True (ByValue)" position="2" aliases=""><maml:name>InputObject</maml:name><maml:description><maml:para>수정해야 할 끝점의 Endpoint 개체입니다. 이 개체는 데이터베이스 미러링 끝점이어야 합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AuthenticationOrder</maml:name><maml:description><maml:para>끝점이 사용하는 인증의 순서 및 유형입니다. 옵션으로 Certificate, CertificateKerberos , CertificateNegotiate, CertificateNtlm, Kerberos, KerberosCertificate, Negotiate, NegotiateCertificate, Ntlm 및 NtlmCertificate이 있습니다. 지정된 옵션에서 인증서를 요청할 경우 인증서가 이미 끝점과 연결되어 있지 않으면 -Certificate 매개 변수도 설정해야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">EndpointAuthenticationOrder</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Certificate</maml:name><maml:description><maml:para>연결을 인증하기 위해 끝점이 사용해야 할 인증서의 이름입니다. 먼 끝점에는 지정된 인증서의 개인 키와 일치하는 공개 키를 가진 인증서가 있어야 합니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Encryption</maml:name><maml:description><maml:para>끝점의 암호화 설정입니다. 옵션으로는 Disabled, Supported 또는 Required가 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">EndpointEncryption</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>EncryptionAlgorithm</maml:name><maml:description><maml:para>끝점에서 사용하는 암호화 형식입니다. 옵션으로 Aes, AesRC4, None, RC4 및 RC4Aes가 있습니다.
</maml:para><maml:para>참고: RC4 알고리즘은 이전 버전과의 호환성을 위해서만 지원됩니다. 데이터베이스의 호환성 수준이 90 또는 100인 경우 새 자료는 RC4 또는 RC4_128로만 암호화할 수 있습니다. 이 옵션은 사용하지 않는 것이 좋습니다. 대신 AES 알고리즘 중 하나와 같은 새 알고리즘을 사용하십시오.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">EndpointEncryptionAlgorithm</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>IpAddress</maml:name><maml:description><maml:para>끝점이 수신할 위치의 IP 주소입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">IPAddress</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Owner</maml:name><maml:description><maml:para>끝점의 소유자입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Port</maml:name><maml:description><maml:para>끝점이 연결을 수신하는 데 사용하는 TCP 포트 번호입니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>Script</maml:name><maml:description><maml:para>이 cmdlet으로 실행된 작업을 수행하는 Transact-SQL 스크립트를 출력합니다.
</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>State</maml:name><maml:description><maml:para>끝점의 상태는 Started, Stopped 또는 Disabled가 있습니다.
</maml:para></maml:description><command:parameterValue required="true" variableLength="false">EndpointState</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>Confirm</maml:name><maml:description><maml:para>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"><maml:name>WhatIf</maml:name><maml:description><maml:para>cmdlet을 실행하기 전 cmdlet 실행 시 예상되는 결과에 대해 설명합니다.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases=""><maml:name>AuthenticationOrder</maml:name><maml:description><maml:para>끝점이 사용하는 인증의 순서 및 유형입니다. 옵션으로 Certificate, CertificateKerberos , CertificateNegotiate, CertificateNtlm, Kerberos, KerberosCertificate, Negotiate, NegotiateCertificate, Ntlm 및 NtlmCertificate이 있습니다. 지정된 옵션에서 인증서를 요청할 경우 인증서가 이미 끝점과 연결되어 있지 않으면 -Certificate 매개 변수도 설정해야 합니다.
</maml:para></maml:description><command:parame