-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathcatalog.go
More file actions
3914 lines (3885 loc) · 318 KB
/
catalog.go
File metadata and controls
3914 lines (3885 loc) · 318 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
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
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT.
package translations
import (
"golang.org/x/text/language"
"golang.org/x/text/message"
"golang.org/x/text/message/catalog"
)
type dictionary struct {
index []uint32
data string
}
func (d *dictionary) Lookup(key string) (data string, ok bool) {
p, ok := messageKeyToIndex[key]
if !ok {
return "", false
}
start, end := d.index[p], d.index[p+1]
if start == end {
return "", false
}
return d.data[start:end], true
}
func init() {
dict := map[string]catalog.Dictionary{
"de_DE": &dictionary{index: de_DEIndex, data: de_DEData},
"en_US": &dictionary{index: en_USIndex, data: en_USData},
"es_ES": &dictionary{index: es_ESIndex, data: es_ESData},
"fr_FR": &dictionary{index: fr_FRIndex, data: fr_FRData},
"it_IT": &dictionary{index: it_ITIndex, data: it_ITData},
"ja_JP": &dictionary{index: ja_JPIndex, data: ja_JPData},
"ko_KR": &dictionary{index: ko_KRIndex, data: ko_KRData},
"pt_BR": &dictionary{index: pt_BRIndex, data: pt_BRData},
"ru_RU": &dictionary{index: ru_RUIndex, data: ru_RUData},
"zh_CN": &dictionary{index: zh_CNIndex, data: zh_CNData},
"zh_TW": &dictionary{index: zh_TWIndex, data: zh_TWData},
}
fallback := language.MustParse("en-US")
cat, err := catalog.NewFromMap(dict, catalog.Fallback(fallback))
if err != nil {
panic(err)
}
message.DefaultCatalog = cat
}
var messageKeyToIndex = map[string]int{
"\t\tor": 202,
"\tIf not, download desktop engine from:": 201,
"\n\nFeedback:\n %s": 2,
"%q is not a valid URL for --using flag": 192,
"%s Disables commands that might compromise system security. Passing 1 tells sqlcmd to exit when disabled commands are run.": 242,
"%s Error occurred while opening or operating on file %s (Reason: %s).": 295,
"%s List servers. Pass %s to omit 'Servers:' output.": 266,
"%s Redirects error messages with severity >= 11 output to stderr. Pass 1 to to redirect all errors including PRINT.": 254,
"%s Remove control characters from output. Pass 1 to substitute a space per character, 2 for a space per consecutive characters": 270,
"%s Specifies the instance of SQL Server to which to connect. It sets the sqlcmd scripting variable %s.": 241,
"%sSyntax error at line %d": 296,
"%v": 45,
"'%s %s': Unexpected argument. Argument value has to be %v.": 278,
"'%s %s': Unexpected argument. Argument value has to be one of %v.": 279,
"'%s %s': value must be greater than %#v and less than %#v.": 277,
"'%s %s': value must be greater than or equal to %#v and less than or equal to %#v.": 276,
"'%s' scripting variable not defined.": 292,
"'%s': Missing argument. Enter '-?' for help.": 281,
"'%s': Unknown Option. Enter '-?' for help.": 282,
"'-a %#v': Packet size has to be a number between 512 and 32767.": 222,
"'-h %#v': header value must be either -1 or a value between 1 and 2147483647": 223,
"(%d rows affected)": 302,
"(1 row affected)": 301,
"--user-database %q contains non-ASCII chars and/or quotes": 181,
"--using URL must be http or https": 191,
"--using URL must have a path to .bak file": 193,
"--using file URL must be a .bak file": 194,
"-? shows this syntax summary, %s shows modern sqlcmd sub-command help": 229,
"A 'Not enough memory resources are available' error can be caused by too many credentials already stored in Windows Credential Manager": 219,
"Accept the SQL Server EULA": 164,
"Add a context": 50,
"Add a context for a local instance of SQL Server on port 1433 using trusted authentication": 51,
"Add a context for this endpoint": 71,
"Add a context manually": 35,
"Add a default endpoint": 67,
"Add a new local endpoint": 56,
"Add a user": 80,
"Add a user (using the SQLCMDPASSWORD environment variable)": 78,
"Add a user (using the SQLCMD_PASSWORD environment variable)": 77,
"Add a user using Windows Data Protection API to encrypt password in sqlconfig": 79,
"Add an already existing endpoint": 57,
"Add an endpoint": 61,
"Add context for existing endpoint and user (use %s or %s)": 7,
"Add the %s flag": 90,
"Add the user": 60,
"Authentication Type '%s' requires a password": 93,
"Authentication type '' is not valid %v'": 86,
"Authentication type must be '%s' or '%s'": 85,
"Authentication type this user will use (basic | other)": 82,
"Both environment variables %s and %s are set. ": 99,
"Causes sqlcmd to ignore scripting variables. This parameter is useful when a script contains many %s statements that may contain strings that have the same format as regular variables, such as $(variable_name)": 245,
"Change current context": 186,
"Command text to run": 14,
"Complete the operation even if non-system (user) database files are present": 31,
"Connection Strings only supported for %s Auth type": 104,
"Container %q no longer exists, continuing to remove context...": 43,
"Container is not running": 217,
"Container is not running, unable to verify that user database files do not exist": 40,
"Context '%v' deleted": 112,
"Context '%v' does not exist": 113,
"Context name (a default context name will be created if not provided)": 162,
"Context name to view details of": 130,
"Controls the severity level that is used to set the %s variable on exit": 264,
"Controls which error messages are sent to %s. Messages that have severity level greater than or equal to this level are sent": 257,
"Create SQL Server with an empty user database": 211,
"Create SQL Server, download and attach AdventureWorks sample database": 209,
"Create SQL Server, download and attach AdventureWorks sample database with different database name": 210,
"Create a new context with a SQL Server container ": 26,
"Create a user database and set it as the default for login": 163,
"Create context": 33,
"Create context with SQL Server container": 34,
"Create new context with a sql container ": 21,
"Created context %q in \"%s\", configuring user account...": 183,
"Creates a sqlcmd scripting variable that can be used in a sqlcmd script. Enclose the value in quotation marks if the value contains spaces. You can specify multiple var=values values. If there are errors in any of the values specified, sqlcmd generates an error message and then exits": 246,
"Creating default database [%s]": 196,
"Current Context '%v'": 66,
"Current context does not have a container": 22,
"Current context is %q. Do you want to continue? (Y/N)": 36,
"Current context is now %s": 44,
"Database for the connection string (default is taken from the T/SQL login)": 103,
"Database to use": 15,
"Declares the application workload type when connecting to a server. The only currently supported value is ReadOnly. If %s is not specified, the sqlcmd utility will not support connectivity to a secondary replica in an Always On availability group": 250,
"Dedicated administrator connection": 267,
"Delete a context": 106,
"Delete a context (excluding its endpoint and user)": 108,
"Delete a context (including its endpoint and user)": 107,
"Delete a user": 120,
"Delete an endpoint": 114,
"Delete the context's endpoint and user as well": 110,
"Delete this endpoint": 75,
"Describe one context in your sqlconfig file": 129,
"Describe one endpoint in your sqlconfig file": 136,
"Describe one user in your sqlconfig file": 143,
"Disabled %q account (and rotated %q password). Creating user %q": 184,
"Display connections strings for the current context": 101,
"Display merged sqlconfig settings or a specified sqlconfig file": 155,
"Display name for the context": 52,
"Display name for the endpoint": 68,
"Display name for the user (this is not the username)": 81,
"Display one or many contexts from the sqlconfig file": 126,
"Display one or many endpoints from the sqlconfig file": 134,
"Display one or many users from the sqlconfig file": 141,
"Display raw byte data": 158,
"Display the current-context": 105,
"Don't download image. Use already downloaded image": 170,
"Download (into container) and attach database (.bak) from URL": 177,
"Downloading %s": 197,
"Downloading %v": 199,
"ED and !!<command> commands, startup script, and environment variables are disabled": 290,
"EULA not accepted": 180,
"Echo input": 271,
"Either, add the %s flag to the command-line": 178,
"Enable column encryption": 272,
"Encryption method '%v' is not valid": 97,
"Endpoint '%v' added (address: '%v', port: '%v')": 76,
"Endpoint '%v' deleted": 119,
"Endpoint '%v' does not exist": 118,
"Endpoint name must be provided. Provide endpoint name with %s flag": 116,
"Endpoint name to view details of": 137,
"Endpoint required to add context. Endpoint '%v' does not exist. Use %s flag": 58,
"Enter new password:": 286,
"Executes a query when sqlcmd starts and then immediately exits sqlcmd. Multiple-semicolon-delimited queries can be executed": 240,
"Executes a query when sqlcmd starts, but does not exit sqlcmd when the query has finished running. Multiple-semicolon-delimited queries can be executed": 239,
"Explicitly set the container hostname, it defaults to the container ID": 173,
"Failed to write credential to Windows Credential Manager": 220,
"File does not exist at URL": 205,
"Flags:": 228,
"Generated password length": 165,
"Get tags available for Azure SQL Edge install": 213,
"Get tags available for mssql install": 215,
"Identifies one or more files that contain batches of SQL statements. If one or more files do not exist, sqlcmd will exit. Mutually exclusive with %s/%s": 231,
"Identifies the file that receives output from sqlcmd": 232,
"If the database is mounted, run %s": 46,
"Implicitly trust the server certificate without validation": 234,
"Include context details": 131,
"Include endpoint details": 138,
"Include user details": 145,
"Install Azure Sql Edge": 159,
"Install/Create Azure SQL Edge in a container": 160,
"Install/Create SQL Server in a container": 207,
"Install/Create SQL Server with full logging": 212,
"Install/Create SQL Server, Azure SQL, and Tools": 8,
"Install/Create, Query, Uninstall SQL Server": 0,
"Invalid --using file type": 195,
"Invalid variable identifier %s": 303,
"Invalid variable value %s": 304,
"Is a container runtime installed on this machine (e.g. Podman or Docker)?": 200,
"Is a container runtime running? (Try `%s` or `%s` (list containers), does it return without error?)": 203,
"Legal docs and information: aka.ms/SqlcmdLegal": 225,
"Level of mssql driver messages to print": 255,
"Line in errorlog to wait for before connecting": 171,
"List all the context names in your sqlconfig file": 127,
"List all the contexts in your sqlconfig file": 128,
"List all the endpoints in your sqlconfig file": 135,
"List all the users in your sqlconfig file": 142,
"List connection strings for all client drivers": 102,
"List tags": 214,
"Minimum number of numeric characters": 167,
"Minimum number of special characters": 166,
"Minimum number of upper characters": 168,
"Modify sqlconfig files using subcommands like \"%s\"": 6,
"Msg %#v, Level %d, State %d, Server %s, Line %#v%s": 299,
"Msg %#v, Level %d, State %d, Server %s, Procedure %s, Line %#v%s": 298,
"Name of context to delete": 109,
"Name of context to set as current context": 150,
"Name of endpoint this context will use": 53,
"Name of endpoint to delete": 115,
"Name of user this context will use": 54,
"Name of user to delete": 121,
"New password": 273,
"New password and exit": 274,
"No context exists with the name: \"%v\"": 154,
"No current context": 19,
"No endpoints to uninstall": 49,
"Now ready for client connections on port %#v": 190,
"Open in Azure Data Studio": 63,
"Open tools (e.g Azure Data Studio) for current context": 9,
"Or, set the environment variable i.e. %s %s=YES ": 179,
"Pass in the %s %s": 88,
"Pass in the flag %s to override this safety check for user (non-system) databases": 47,
"Password": 263,
"Password encryption method (%s) in sqlconfig file": 84,
"Password:": 300,
"Port (next available port from 1433 upwards used by default)": 176,
"Press Ctrl+C to exit this process...": 218,
"Print version information and exit": 233,
"Prints the output in vertical format. This option sets the sqlcmd scripting variable %s to '%s'. The default is false": 253,
"Provide a username with the %s flag": 94,
"Provide a valid encryption method (%s) with the %s flag": 96,
"Provide password in the %s (or %s) environment variable": 92,
"Provided for backward compatibility. Client regional settings are not used": 269,
"Provided for backward compatibility. Quoted identifiers are always enabled": 268,
"Provided for backward compatibility. Sqlcmd always optimizes detection of the active replica of a SQL Failover Cluster": 262,
"Quiet mode (do not stop for user input to confirm the operation)": 30,
"Remove": 189,
"Remove the %s flag": 87,
"Remove trailing spaces from a column": 261,
"Removing context %s": 41,
"Requests a packet of a different size. This option sets the sqlcmd scripting variable %s. packet_size must be a value between 512 and 32767. The default = 4096. A larger packet size can enhance performance for execution of scripts that have lots of SQL statements between %s commands. You can request a larger packet size. However, if the request is denied, sqlcmd uses the server default for packet size": 247,
"Restoring database %s": 198,
"Run a query": 11,
"Run a query against the current context": 10,
"Run a query using [%s] database": 12,
"See all release tags for SQL Server, install previous version": 208,
"See connection strings": 188,
"Server name override is not supported with the current authentication method": 309,
"Servers:": 224,
"Set new default database": 13,
"Set the current context": 148,
"Set the mssql context (endpoint/user) to be the current context": 149,
"Sets the sqlcmd scripting variable %s": 275,
"Show sqlconfig settings and raw authentication data": 157,
"Show sqlconfig settings, with REDACTED authentication data": 156,
"Special character set to include in password": 169,
"Specifies that all output files are encoded with little-endian Unicode": 259,
"Specifies that sqlcmd exits and returns a %s value when an error occurs": 256,
"Specifies the SQL authentication method to use to connect to Azure SQL Database. One of: %s": 243,
"Specifies the batch terminator. The default value is %s": 237,
"Specifies the column separator character. Sets the %s variable.": 260,
"Specifies the host name in the server certificate.": 252,
"Specifies the image CPU architecture": 174,
"Specifies the image operating system": 175,
"Specifies the number of rows to print between the column headings. Use -h-1 to specify that headers not be printed": 258,
"Specifies the number of seconds before a sqlcmd login to the go-mssqldb driver times out when you try to connect to a server. This option sets the sqlcmd scripting variable %s. The default value is 30. 0 means infinite": 248,
"Specifies the path to a server certificate file (PEM, DER, or CER) to match against the server's TLS certificate. Use when encryption is enabled (-N true, -N mandatory, or -N strict) for certificate pinning instead of standard certificate validation.": 308,
"Specifies the screen width for output": 265,
"Specifies the server name to use for authentication when tunneling through a proxy. Use with -S to specify the dial address separately from the server name sent to SQL Server.": 307,
"Specify a custom name for the container rather than a randomly generated one": 172,
"Sqlcmd: Error: ": 288,
"Sqlcmd: Warning: ": 289,
"Start current context": 16,
"Start interactive session": 185,
"Start the current context": 17,
"Starting %q for context %q": 20,
"Starting %v": 182,
"Stop current context": 23,
"Stop the current context": 24,
"Stopping %q for context %q": 25,
"Stopping %s": 42,
"Switched to context \"%v\".": 153,
"Syntax error at line %d near command '%s'.": 294,
"Tag to use, use get-tags to see list of tags": 161,
"Tells sqlcmd to use ActiveDirectory authentication. If no user name is provided, authentication method ActiveDirectoryDefault is used. If a password is provided, ActiveDirectoryPassword is used. Otherwise ActiveDirectoryInteractive is used": 244,
"The %s and the %s options are mutually exclusive.": 280,
"The %s flag can only be used when authentication type is '%s'": 89,
"The %s flag must be set when authentication type is '%s'": 91,
"The -J parameter requires encryption to be enabled (-N true, -N mandatory, or -N strict).": 306,
"The -L parameter can not be used in combination with other parameters.": 221,
"The environment variable: '%s' has invalid value: '%s'.": 293,
"The login name or contained database user name. For contained database users, you must provide the database name option": 238,
"The network address to connect to, e.g. 127.0.0.1 etc.": 69,
"The network port to connect to, e.g. 1433 etc.": 70,
"The scripting variable: '%s' is read-only": 291,
"The username (provide password in %s or %s environment variable)": 83,
"Third party notices: aka.ms/SqlcmdNotices": 226,
"This option sets the sqlcmd scripting variable %s. The workstation name is listed in the hostname column of the sys.sysprocesses catalog view and can be returned using the stored procedure sp_who. If this option is not specified, the default is the current computer name. This name can be used to identify different sqlcmd sessions": 249,
"This option sets the sqlcmd scripting variable %s. This parameter specifies the initial database. The default is your login's default-database property. If the database does not exist, an error message is generated and sqlcmd exits": 235,
"This switch is used by the client to request an encrypted connection": 251,
"Timeout expired": 297,
"To override the check, use %s": 39,
"To remove: %s": 152,
"To run a query": 65,
"To run a query: %s": 151,
"To start interactive query session": 64,
"To start the container": 38,
"To view available contexts": 18,
"To view available contexts run `%s`": 132,
"To view available endpoints run `%s`": 139,
"To view available users run `%s`": 146,
"Unable to continue, a user (non-system) database (%s) is present": 48,
"Unable to download file": 206,
"Unable to download image %s": 204,
"Uninstall/Delete the current context": 27,
"Uninstall/Delete the current context, no user prompt": 28,
"Uninstall/Delete the current context, no user prompt and override safety check for user databases": 29,
"Unset one of the environment variables %s or %s": 98,
"Use the %s flag to pass in a context name to delete": 111,
"User %q deleted": 125,
"User %q does not exist": 124,
"User '%v' added": 100,
"User '%v' does not exist": 62,
"User name must be provided. Provide user name with %s flag": 122,
"User name to view details of": 144,
"Username not provided": 95,
"Uses a trusted connection instead of using a user name and password to sign in to SQL Server, ignoring any environment variables that define user name and password": 236,
"Verifying no user (non-system) database (.mdf) files": 37,
"Version: %v\n": 227,
"View all endpoints details": 74,
"View available contexts": 32,
"View configuration information and connection strings": 1,
"View endpoint details": 73,
"View endpoint names": 72,
"View endpoints": 117,
"View existing endpoints to choose from": 55,
"View list of users": 59,
"View sqlcmd configuration": 187,
"View users": 123,
"Write runtime trace to the specified file. Only for advanced debugging.": 230,
"YAML configuration file (.yaml or .yml extension)": 305,
"error: no context exists with the name: \"%v\"": 133,
"error: no endpoint exists with the name: \"%v\"": 140,
"error: no user exists with the name: \"%v\"": 147,
"failed to create trace file '%s': %v": 283,
"failed to start trace: %v": 284,
"help for backwards compatibility flags (-S, -U, -E etc.)": 3,
"invalid batch terminator '%s'": 285,
"log level, error=0, warn=1, info=2, debug=3, trace=4": 5,
"print version of sqlcmd": 4,
"sqlcmd start": 216,
"sqlcmd: Install/Create/Query SQL Server, Azure SQL, and Tools": 287,
}
var de_DEIndex = []uint32{ // 311 elements
// Entry 0 - 1F
0x00000000, 0x0000003c, 0x0000007e, 0x00000096,
0x000000d1, 0x000000e9, 0x00000134, 0x00000175,
0x000001cd, 0x00000204, 0x00000244, 0x00000272,
0x00000285, 0x000002b7, 0x000002d8, 0x000002f4,
0x0000030d, 0x00000327, 0x00000341, 0x00000364,
0x0000037b, 0x000003ab, 0x000003e0, 0x00000410,
0x0000042b, 0x00000445, 0x00000473, 0x000004af,
0x000004d9, 0x0000051f, 0x000005b8, 0x0000060a,
// Entry 20 - 3F
0x0000066f, 0x0000068d, 0x0000069f, 0x000006ca,
0x000006e6, 0x00000731, 0x00000791, 0x000007ac,
0x000007ed, 0x0000086a, 0x00000886, 0x00000899,
0x000008dc, 0x00000902, 0x00000908, 0x0000093d,
0x000009c0, 0x00000a33, 0x00000a68, 0x00000a7c,
0x00000b00, 0x00000b21, 0x00000b5f, 0x00000b90,
0x00000bba, 0x00000bdd, 0x00000c06, 0x00000c81,
0x00000c9d, 0x00000cb6, 0x00000ccb, 0x00000cf4,
// Entry 40 - 5F
0x00000d11, 0x00000d3f, 0x00000d5c, 0x00000d76,
0x00000d93, 0x00000db5, 0x00000e10, 0x00000e63,
0x00000e8c, 0x00000ea3, 0x00000ec1, 0x00000ee6,
0x00000eff, 0x00000f3f, 0x00000f86, 0x00000fcc,
0x00001044, 0x00001059, 0x00001099, 0x000010e2,
0x00001132, 0x0000116e, 0x000011a7, 0x000011d7,
0x000011ec, 0x00001203, 0x00001259, 0x00001270,
0x000012c2, 0x00001300, 0x00001335, 0x00001366,
// Entry 60 - 7F
0x00001383, 0x000013cf, 0x00001402, 0x00001438,
0x0000147d, 0x0000149b, 0x000014d8, 0x00001513,
0x00001572, 0x000015c9, 0x000015e4, 0x000015f5,
0x0000162e, 0x0000165c, 0x0000167d, 0x000016a9,
0x000016fa, 0x00001714, 0x0000173c, 0x0000174e,
0x00001770, 0x000017c1, 0x000017d4, 0x000017fd,
0x00001818, 0x00001830, 0x00001852, 0x000018a3,
0x000018b5, 0x000018d8, 0x000018f1, 0x0000192e,
// Entry 80 - 9F
0x00001963, 0x00001994, 0x000019c1, 0x000019e9,
0x00001a06, 0x00001a40, 0x00001a87, 0x00001ac5,
0x00001af7, 0x00001b25, 0x00001b4e, 0x00001b71,
0x00001bb0, 0x00001bf8, 0x00001c35, 0x00001c66,
0x00001c9a, 0x00001cc3, 0x00001ce1, 0x00001d1b,
0x00001d5d, 0x00001d79, 0x00001dbb, 0x00001dff,
0x00001e23, 0x00001e38, 0x00001e5a, 0x00001e99,
0x00001ef1, 0x00001f37, 0x00001f82, 0x00001f98,
// Entry A0 - BF
0x00001fb4, 0x00001fed, 0x00002043, 0x00002095,
0x000020df, 0x0000210d, 0x0000212e, 0x0000214a,
0x0000216c, 0x0000218e, 0x000021d0, 0x00002213,
0x0000226c, 0x000022d3, 0x00002333, 0x00002356,
0x00002377, 0x000023c3, 0x00002406, 0x00002447,
0x0000248e, 0x000024b1, 0x00002500, 0x0000250f,
0x00002559, 0x000025b2, 0x000025ce, 0x000025e8,
0x00002606, 0x00002628, 0x00002632, 0x00002666,
// Entry C0 - DF
0x00002691, 0x000026c5, 0x000026fe, 0x0000272d,
0x0000274a, 0x00002772, 0x0000278d, 0x000027b4,
0x000027cd, 0x00002823, 0x0000285e, 0x00002869,
0x000028f5, 0x00002922, 0x0000294e, 0x00002978,
0x000029ad, 0x000029f7, 0x00002a4d, 0x00002ac4,
0x00002afc, 0x00002b41, 0x00002b84, 0x00002b93,
0x00002bc8, 0x00002bd5, 0x00002bf6, 0x00002c2b,
0x00002d1e, 0x00002d74, 0x00002dc7, 0x00002e11,
// Entry E0 - FF
0x00002e76, 0x00002e7e, 0x00002eb9, 0x00002eea,
0x00002efe, 0x00002f05, 0x00002f68, 0x00002fc4,
0x00003088, 0x000030c3, 0x000030ed, 0x0000313a,
0x00003257, 0x00003333, 0x00003371, 0x00003406,
0x000034c4, 0x00003561, 0x000035ed, 0x00003698,
0x0000373e, 0x00003870, 0x00003970, 0x00003ab7,
0x00003c9e, 0x00003dc5, 0x00003f6a, 0x0000409f,
0x000040fa, 0x00004125, 0x000041c1, 0x0000424d,
// Entry 100 - 11F
0x0000427c, 0x000042d0, 0x0000435f, 0x00004401,
0x0000444a, 0x00004489, 0x000044bd, 0x0000454d,
0x00004556, 0x000045a8, 0x000045d6, 0x0000462b,
0x00004646, 0x000046b6, 0x00004725, 0x000047ce,
0x000047da, 0x000047fd, 0x0000480c, 0x00004827,
0x00004851, 0x000048af, 0x000048fd, 0x00004945,
0x00004997, 0x000049d5, 0x00004a1f, 0x00004a5d,
0x00004aa1, 0x00004ad1, 0x00004afb, 0x00004b14,
// Entry 120 - 13F
0x00004b5c, 0x00004b71, 0x00004b87, 0x00004bdf,
0x00004c12, 0x00004c42, 0x00004c85, 0x00004cc3,
0x00004d0f, 0x00004d30, 0x00004d43, 0x00004d9e,
0x00004de9, 0x00004df3, 0x00004e07, 0x00004e20,
0x00004e46, 0x00004e66, 0x00004e66, 0x00004e66,
0x00004e66, 0x00004e66, 0x00004e66,
} // Size: 1268 bytes
const de_DEData string = "" + // Size: 20070 bytes
"\x02SQL Server installieren/erstellen, abfragen, deinstallieren\x02Konfi" +
"gurationsinformationen und Verbindungszeichenfolgen anzeigen\x04\x02\x0a" +
"\x0a\x00\x12\x02Feedback:\x0a %[1]s\x02Hilfe für Abwärtskompatibilitäts" +
"flags (-S, -U, -E usw.)\x02Druckversion von sqlcmd\x02Protokolliergrad, " +
"Fehler=0, Warnung=1, Info=2, Debug=3, Ablaufverfolgung=4\x02SQLConfig-Da" +
"teien mithilfe von Unterbefehlen wie \x22%[1]s\x22 ändern\x02Kontext für" +
" vorhandenen Endpunkt und Benutzer hinzufügen (%[1]s oder %[2]s verwende" +
"n)\x02SQL Server, Azure SQL und Tools installieren/erstellen\x02Tools (z" +
".\u00a0B. Azure Data Studio) für aktuellen Kontext öffnen\x02Abfrage für" +
" den aktuellen Kontext ausführen\x02Abfrage ausführen\x02Abfrage mithilf" +
"e der [%[1]s]-Datenbank ausführen\x02Neue Standarddatenbank festlegen" +
"\x02Auszuführender Befehlstext\x02Zu verwendende Datenbank\x02Aktuellen " +
"Kontext starten\x02Aktuellen Kontext starten\x02Zum Anzeigen verfügbarer" +
" Kontexte\x02Kein aktueller Kontext\x02%[1]q für kontextbezogene %[2]q w" +
"ird gestartet\x04\x00\x01 0\x02Neuen Kontext mit einem SQL-Container ers" +
"tellen\x02Der aktuelle Kontext weist keinen Container auf\x02Aktuellen K" +
"ontext anhalten\x02Aktuellen Kontext beenden\x02%[1]q für kontextbezogen" +
"e %[2]q wird beendet\x04\x00\x01 7\x02Neuen Kontext mit einem SQL Server" +
"-Container erstellen\x02Aktuellen Kontext deinstallieren/löschen\x02Aktu" +
"ellen Kontext deinstallieren/löschen, keine Benutzeraufforderung\x02Aktu" +
"ellen Kontext deinstallieren/löschen, keine Benutzeraufforderung anzeige" +
"n und Sicherheitsüberprüfung für Benutzerdatenbanken außer Kraft setzen" +
"\x02Stiller Modus (nicht für Benutzereingabe beenden, um den Vorgang zu " +
"bestätigen)\x02Vorgang auch dann abschließen, wenn nicht systembasierte " +
"(Benutzer-)Datenbankdateien vorhanden sind\x02Verfügbare Kontexte anzeig" +
"en\x02Kontext erstellen\x02Kontext mit SQL Server-Container erstellen" +
"\x02Kontext manuell hinzufügen\x02Der aktuelle Kontext ist %[1]q. Möchte" +
"n Sie den Vorgang fortsetzen? (J/N)\x02Es wird überprüft, dass keine Ben" +
"utzer- (Nicht-System-)Datenbankdateien (.mdf) vorhanden sind\x02Zum Star" +
"ten des Containers\x02Um die Überprüfung außer Kraft zu setzen, verwende" +
"n Sie %[1]s\x02Der Container wird nicht ausgeführt. Es kann nicht überpr" +
"üft werden, ob die Benutzerdatenbankdateien nicht vorhanden sind\x02Kon" +
"text %[1]s wird entfernt\x02%[1]s wird beendet\x02Container %[1]q nicht " +
"mehr vorhanden. Der Kontext wird entfernt...\x02Der aktuelle Kontext ist" +
" jetzt %[1]s.\x02%[1]v\x02Wenn die Datenbank eingebunden ist, %[1]s ausf" +
"ühren\x02Flag %[1]s übergeben, um diese Sicherheitsüberprüfung für Benu" +
"tzerdatenbanken (keine Systemdatenbanken) außer Kraft zu setzen\x02Der V" +
"organg kann nicht fortgesetzt werden, da eine Benutzerdatenbank (keine S" +
"ystemdatenbank) (%[1]s) vorhanden ist\x02Es sind keine Endpunkte zur Dei" +
"nstallation vorhanden\x02Kontext hinzufügen\x02Einen Kontext für eine lo" +
"kale Instanz von SQL Server an Port 1433 mithilfe einer vertrauenswürdig" +
"en Authentifizierung hinzufügen\x02Der Anzeigename für den Kontext\x02De" +
"r Name des Endpunkts, der von diesem Kontext verwendet wird\x02Name des " +
"Benutzers, den dieser Kontext verwendet\x02Vorhandene Endpunkte zur Ausw" +
"ahl anzeigen\x02Neuen lokalen Endpunkt hinzufügen\x02Bereits vorhandenen" +
" Endpunkt hinzufügen\x02Zum Hinzufügen des Kontexts ist ein Endpunkt erf" +
"orderlich. Der Endpunkt '%[1]v' ist nicht vorhanden. %[2]s-Flag verwende" +
"n\x02Liste der Benutzer anzeigen\x02Den Benutzer hinzufügen\x02Endpunkt " +
"hinzufügen\x02Der Benutzer '%[1]v' ist nicht vorhanden\x02In Azure Data " +
"Studio öffnen\x02Zum Starten einer interaktiven Abfragesitzung\x02Zum Au" +
"sführen einer Abfrage\x02Aktueller Kontext '%[1]v'\x02Standardendpunkt h" +
"inzufügen\x02Der Anzeigename für den Endpunkt\x02Die Netzwerkadresse, mi" +
"t der eine Verbindung hergestellt werden soll, z. B. 127.0.0.1 usw.\x02D" +
"er Netzwerkport, mit dem eine Verbindung hergestellt werden soll, z. B. " +
"1433 usw.\x02Kontext für diesen Endpunkt hinzufügen\x02Endpunktnamen anz" +
"eigen\x02Details zum Endpunkt anzeigen\x02Details zu allen Endpunkten an" +
"zeigen\x02Diesen Endpunkt löschen\x02Endpunkt '%[1]v' hinzugefügt (Adres" +
"se: '%[2]v', Port: '%[3]v')\x02Benutzer hinzufügen (mithilfe der Umgebun" +
"gsvariablen SQLCMD_PASSWORD)\x02Benutzer hinzufügen (mithilfe der Umgebu" +
"ngsvariablen SQLCMDPASSWORD)\x02Einen Benutzer hinzufügen, der die Windo" +
"ws Data Protection-API zum Verschlüsseln des Kennworts in SQLConfig verw" +
"endet\x02Benutzer hinzufügen\x02Anzeigename für den Benutzer (dies ist n" +
"icht der Benutzername)\x02Authentifizierungstyp, den dieser Benutzer ver" +
"wendet (Standard | andere)\x02Der Benutzername (Kennwort in der Umgebung" +
"svariablen %[1]s (oder %[2]s angeben)\x02Kennwortverschlüsselungsmethode" +
" (%[1]s) in SQLConfig-Datei\x02Der Authentifizierungstyp muss '%[1]s' od" +
"er '%[2]s' sein\x02Der Authentifizierungstyp '%[1]v' ist ungültig\x02Fla" +
"g %[1]s entfernen\x02%[1]s %[2]s übergeben\x02Das Flag %[1]s kann nur ve" +
"rwendet werden, wenn der Authentifizierungstyp '%[2]s' ist.\x02Flag %[1]" +
"s hinzufügen\x02Das Flag %[1]s muss verwendet werden, wenn der Authentif" +
"izierungstyp '%[2]s' ist.\x02Kennwort in der Umgebungsvariablen %[1]s (o" +
"der %[2]s) angeben\x02Authentifizierungstyp '%[1]s' erfordert ein Kennwo" +
"rt\x02Einen Benutzernamen mit dem Flag \x22%[1]s\x22 angeben\x02Benutzer" +
"name nicht angegeben\x02Eine gültige Verschlüsselungsmethode (%[1]s) mit" +
" dem Flag \x22%[2]s\x22 angeben\x02Die Verschlüsselungsmethode '%[1]v' i" +
"st ungültig\x02Eine der Umgebungsvariablen %[1]s oder %[2]s löschen\x04" +
"\x00\x01 @\x02Sowohl Umgebungsvariablen %[1]s als auch %[2]s sind festge" +
"legt.\x02Benutzer '%[1]v' hinzugefügt\x02Verbindungszeichenfolgen für de" +
"n aktuellen Kontext anzeigen\x02Verbindungszeichenfolgen für alle Client" +
"treiber auflisten\x02Datenbank für die Verbindungszeichenfolge (Standard" +
" wird aus der T/SQL-Anmeldung übernommen)\x02Verbindungszeichenfolgen we" +
"rden nur für den Authentifizierungstyp %[1]s unterstützt.\x02Aktuellen K" +
"ontext anzeigen\x02Kontext löschen\x02Kontext löschen (einschließlich En" +
"dpunkt und Benutzer)\x02Kontext löschen (ohne Endpunkt und Benutzer)\x02" +
"Name des zu löschenden Kontexts\x02Endpunkt und Benutzer des Kontexts lö" +
"schen\x02Das Flag „%[1]s“ verwenden, um einen Kontextnamen zum Löschen z" +
"u übergeben\x02Kontext '%[1]v' gelöscht\x02Kontext „%[1]v“ ist nicht vor" +
"handen\x02Endpunkt löschen\x02Name des zu löschenden Endpunkts\x02Der En" +
"dpunktname muss angegeben werden. Geben Sie den Endpunktnamen mit %[1]s " +
"an\x02Endpunkte anzeigen\x02Endpunkt „%[1]v“ ist nicht vorhanden\x02Endp" +
"unkt \x22%[1]v\x22 gelöscht\x02Einen Benutzer löschen\x02Name des zu lös" +
"chenden Benutzers\x02Der Benutzername muss angegeben werden. Geben Sie d" +
"en Benutzernamen mit %[1]s an\x02Benutzer anzeigen\x02Benutzer %[1]q ist" +
" nicht vorhanden\x02Benutzer %[1]q gelöscht\x02Einen oder mehrere Kontex" +
"te aus der SQLConfig-Datei anzeigen\x02Alle Kontextnamen in Ihrer SQLCon" +
"fig-Datei auflisten\x02Alle Kontexte in Ihrer SQLConfig-Datei auflisten" +
"\x02Kontext in Ihrer SQLConfig-Datei beschreiben\x02Kontextname zum Anze" +
"igen von Details zu\x02Kontextdetails einschließen\x02Zum Anzeigen verfü" +
"gbarer Kontexte „%[1]s“ ausführen\x02Fehler: Es ist kein Kontext mit fol" +
"gendem Namen vorhanden: „%[1]v“\x02Einen oder mehrere Endpunkte aus der " +
"SQLConfig-Datei anzeigen\x02Alle Endpunkte in Ihrer SQLConfig-Datei aufl" +
"isten\x02Endpunkt in Ihrer SQLConfig-Datei beschreiben\x02Endpunktname z" +
"um Anzeigen von Details zu\x02Details zum Endpunkt einschließen\x02Zum A" +
"nzeigen der verfügbaren Endpunkte „%[1]s“ ausführen\x02Fehler: Es ist ke" +
"in Endpunkt mit folgendem Namen vorhanden: „%[1]v“\x02Einen oder mehrere" +
" Benutzer aus der SQLConfig-Datei anzeigen\x02Alle Benutzer in Ihrer SQL" +
"Config-Datei auflisten\x02Einen Benutzer in Ihrer SQLConfig-Datei beschr" +
"eiben\x02Benutzername zum Anzeigen von Details zu\x02Benutzerdetails ein" +
"schließen\x02Zum Anzeigen verfügbarer Benutzer „%[1]s“ ausführen\x02Fehl" +
"er: Es ist kein Benutzer vorhanden mit dem Namen: „%[1]v“\x02Aktuellen K" +
"ontext festlegen\x02mssql-Kontext (Endpunkt/Benutzer) als aktuellen Kont" +
"ext festlegen\x02Name des Kontexts, der als aktueller Kontext festgelegt" +
" werden soll\x02Zum Ausführen einer Abfrage: %[1]s\x02Zum Entfernen: %[1" +
"]s\x02Zu Kontext „%[1]v“ gewechselt\x02Es ist kein Kontext mit folgendem" +
" Namen vorhanden: „%[1]v“\x02Zusammengeführte SQLConfig-Einstellungen od" +
"er eine angegebene SQLConfig-Datei anzeigen\x02SQLConfig-Einstellungen m" +
"it REDACTED-Authentifizierungsdaten anzeigen\x02SQLConfig-Einstellungen " +
"und unformatierte Authentifizierungsdaten anzeigen\x02Rohbytedaten anzei" +
"gen\x02Azure SQL Edge installieren\x02Azure SQL Edge in einem Container " +
"installieren/erstellen\x02Zu verwendende Markierung. Verwenden Sie get-t" +
"ags, um eine Liste der Tags anzuzeigen.\x02Kontextname (ein Standardkont" +
"extname wird erstellt, wenn er nicht angegeben wird)\x02Benutzerdatenban" +
"k erstellen und als Standard für die Anmeldung festlegen\x02Lizenzbeding" +
"ungen für SQL Server akzeptieren\x02Länge des generierten Kennworts\x02M" +
"indestanzahl Sonderzeichen\x02Mindestanzahl numerischer Zeichen\x02Minde" +
"stanzahl von Großbuchstaben\x02Sonderzeichensatz, der in das Kennwort ei" +
"ngeschlossen werden soll\x02Bild nicht herunterladen. Bereits herunterge" +
"ladenes Bild verwenden\x02Zeile im Fehlerprotokoll, auf die vor dem Hers" +
"tellen der Verbindung gewartet werden soll\x02Einen benutzerdefinierten " +
"Namen für den Container anstelle eines zufällig generierten Namens angeb" +
"en\x02Legen Sie den Containerhostnamen explizit fest. Standardmäßig wird" +
" die Container-ID verwendet\x02Gibt die Image-CPU-Architektur an.\x02Gib" +
"t das Image-Betriebssystem an\x02Port (der nächste verfügbare Port ab 14" +
"33 wird standardmäßig verwendet)\x02Herunterladen (in Container) und Dat" +
"enbank (.bak) von URL anfügen\x02Fügen Sie der Befehlszeile entweder das" +
" Flag „%[1]s“ hinzu.\x04\x00\x01 B\x02Oder legen Sie die Umgebungsvariab" +
"le fest, d.\u00a0h. %[1]s %[2]s=YES\x02Lizenzbedingungen nicht akzeptier" +
"t\x02--user-database %[1]q enthält Nicht-ASCII-Zeichen und/oder Anführun" +
"gszeichen\x02Starting %[1]v\x02Kontext %[1]q in „%[2]s“ erstellt, Benutz" +
"erkonto wird konfiguriert...\x02%[1]q-Konto wurde deaktiviert (und %[2]q" +
" Kennwort gedreht). Benutzer %[3]q wird erstellt\x02Interaktive Sitzung " +
"starten\x02Aktuellen Kontext ändern\x02sqlcmd-Konfiguration anzeigen\x02" +
"Verbindungszeichenfolgen anzeigen\x02Entfernen\x02Jetzt bereit für Clien" +
"tverbindungen an Port %#[1]v\x02Die --using-URL muss http oder https sei" +
"n.\x02%[1]q ist keine gültige URL für das --using-Flag.\x02Die --using-U" +
"RL muss einen Pfad zur BAK-Datei aufweisen.\x02Die --using-Datei-URL mus" +
"s eine BAK-Datei sein\x02Ungültiger --using-Dateityp\x02Standarddatenban" +
"k wird erstellt [%[1]s]\x02%[1]s wird heruntergeladen\x02Datenbank %[1]s" +
" wird wiederhergestellt\x02%[1]v wird herunterladen\x02Ist eine Containe" +
"rruntime auf diesem Computer installiert (z. B. Podman oder Docker)?\x04" +
"\x01\x09\x006\x02Falls nicht, laden Sie das Desktopmodul herunter von:" +
"\x04\x02\x09\x09\x00\x05\x02oder\x02Wird eine Containerruntime ausgeführ" +
"t? (Probieren Sie '%[1]s' oder '%[2]s' aus (Container auflisten). Wird e" +
"r ohne Fehler zurückgegeben?)\x02Bild %[1]s kann nicht heruntergeladen w" +
"erden\x02Die Datei ist unter der URL nicht vorhanden\x02Datei konnte nic" +
"ht heruntergeladen werden\x02SQL Server in einem Container installieren/" +
"erstellen\x02Alle Releasetags für SQL Server anzeigen, vorherige Version" +
" installieren\x02SQL Server erstellen, die AdventureWorks-Beispieldatenb" +
"ank herunterladen und anfügen\x02SQL Server erstellen, die AdventureWork" +
"s-Beispieldatenbank mit einem anderen Datenbanknamen herunterladen und a" +
"nfügen\x02SQL Server mit einer leeren Benutzerdatenbank erstellen\x02SQL" +
" Server mit vollständiger Protokollierung installieren/erstellen\x02Tags" +
" abrufen, die für Azure SQL Edge-Installation verfügbar sind\x02Tags auf" +
"listen\x02Verfügbare Tags für die MSSQL-Installation abrufen\x02sqlcmd-S" +
"tart\x02Container wird nicht ausgeführt\x02Drücken Sie STRG+C, um diesen" +
" Prozess zu beenden...\x02Der Fehler \x22Not enough memory resources are" +
" available\x22 (Nicht genügend Arbeitsspeicherressourcen sind verfügbar)" +
" kann durch zu viele Anmeldeinformationen verursacht werden, die bereits" +
" in Windows Anmeldeinformations-Manager gespeichert sind\x02Fehler beim " +
"Schreiben der Anmeldeinformationen in Windows Anmeldeinformations-Manage" +
"r\x02Der -L-Parameter kann nicht in Verbindung mit anderen Parametern ve" +
"rwendet werden.\x02\x22-a %#[1]v\x22: Die Paketgröße muss eine Zahl zwis" +
"chen 512 und 32767 sein.\x02'-h %#[1]v': Der Headerwert muss entweder -2" +
"147483647 oder ein Wert zwischen -1 und 2147483647 sein.\x02Server:\x02R" +
"echtliche Dokumente und Informationen: aka.ms/SqlcmdLegal\x02Hinweise zu" +
" Drittanbietern: aka.ms/SqlcmdNotices\x04\x00\x01\x0a\x0f\x02Version: %[" +
"1]v\x02Flags:\x02-? zeigt diese Syntaxzusammenfassung an, %[1]s zeigt di" +
"e Hilfe zu modernen sqlcmd-Unterbefehlen an\x02Laufzeitverfolgung in die" +
" angegebene Datei schreiben. Nur für fortgeschrittenes Debugging.\x02Ide" +
"ntifiziert mindestens eine Datei, die Batches von SQL-Anweisungen enthäl" +
"t. Wenn mindestens eine Datei nicht vorhanden ist, wird sqlcmd beendet. " +
"Sich gegenseitig ausschließend mit %[1]s/%[2]s\x02Identifiziert die Date" +
"i, die Ausgaben von sqlcmd empfängt\x02Versionsinformationen drucken und" +
" beenden\x02Serverzertifikat ohne Überprüfung implizit als vertrauenswür" +
"dig einstufen\x02Mit dieser Option wird die sqlcmd-Skriptvariable %[1]s " +
"festgelegt. Dieser Parameter gibt die Anfangsdatenbank an. Der Standardw" +
"ert ist die Standarddatenbankeigenschaft Ihrer Anmeldung. Wenn die Daten" +
"bank nicht vorhanden ist, wird eine Fehlermeldung generiert, und sqlcmd " +
"wird beendet.\x02Verwendet eine vertrauenswürdige Verbindung, anstatt ei" +
"nen Benutzernamen und ein Kennwort für die Anmeldung bei SQL Server zu v" +
"erwenden. Umgebungsvariablen, die Benutzernamen und Kennwort definieren," +
" werden ignoriert.\x02Gibt das Batchabschlusszeichen an. Der Standardwer" +
"t ist %[1]s\x02Der Anmeldename oder der enthaltene Datenbankbenutzername" +
". Für eigenständige Datenbankbenutzer müssen Sie die Option „Datenbankna" +
"me“ angeben.\x02Führt eine Abfrage aus, wenn sqlcmd gestartet wird, aber" +
" beendet sqlcmd nicht, wenn die Abfrage ausgeführt wurde. Abfragen mit m" +
"ehrfachem Semikolontrennzeichen können ausgeführt werden.\x02Führt eine " +
"Abfrage aus, wenn sqlcmd gestartet und dann sqlcmd sofort beendet wird. " +
"Abfragen mit mehrfachem Semikolontrennzeichen können ausgeführt werden" +
"\x02%[1]s Gibt die Instanz von SQL Server an, mit denen eine Verbindung " +
"hergestellt werden soll. Sie legt die sqlcmd-Skriptvariable %[2]s fest." +
"\x02%[1]s Deaktiviert Befehle, die die Systemsicherheit gefährden könnte" +
"n. Die Übergabe 1 weist sqlcmd an, beendet zu werden, wenn deaktivierte " +
"Befehle ausgeführt werden.\x02Gibt die SQL-Authentifizierungsmethode an," +
" die zum Herstellen einer Verbindung mit der Azure SQL-Datenbank verwend" +
"et werden soll. Eines der folgenden Elemente: %[1]s\x02Weist sqlcmd an, " +
"die ActiveDirectory-Authentifizierung zu verwenden. Wenn kein Benutzerna" +
"me angegeben wird, wird die Authentifizierungsmethode ActiveDirectoryDef" +
"ault verwendet. Wenn ein Kennwort angegeben wird, wird ActiveDirectoryPa" +
"ssword verwendet. Andernfalls wird ActiveDirectoryInteractive verwendet." +
"\x02Bewirkt, dass sqlcmd Skriptvariablen ignoriert. Dieser Parameter ist" +
" nützlich, wenn ein Skript viele %[1]s-Anweisungen enthält, die mögliche" +
"rweise Zeichenfolgen enthalten, die das gleiche Format wie reguläre Vari" +
"ablen aufweisen, z. B. $(variable_name)\x02Erstellt eine sqlcmd-Skriptva" +
"riable, die in einem sqlcmd-Skript verwendet werden kann. Schließen Sie " +
"den Wert in Anführungszeichen ein, wenn der Wert Leerzeichen enthält. Si" +
"e können mehrere var=values-Werte angeben. Wenn Fehler in einem der ange" +
"gebenen Werte vorliegen, generiert sqlcmd eine Fehlermeldung und beendet" +
" dann\x02Fordert ein Paket einer anderen Größe an. Mit dieser Option wir" +
"d die sqlcmd-Skriptvariable %[1]s festgelegt. packet_size muss ein Wert " +
"zwischen 512 und 32767 sein. Der Standardwert = 4096. Eine größere Paket" +
"größe kann die Leistung für die Ausführung von Skripts mit vielen SQL-An" +
"weisungen zwischen %[2]s-Befehlen verbessern. Sie können eine größere Pa" +
"ketgröße anfordern. Wenn die Anforderung abgelehnt wird, verwendet sqlcm" +
"d jedoch den Serverstandard für die Paketgröße.\x02Gibt die Anzahl von S" +
"ekunden an, nach der ein Timeout für eine sqlcmd-Anmeldung beim go-mssql" +
"db-Treiber auftritt, wenn Sie versuchen, eine Verbindung mit einem Serve" +
"r herzustellen. Mit dieser Option wird die sqlcmd-Skriptvariable %[1]s f" +
"estgelegt. Der Standardwert ist 30. 0 bedeutet unendlich\x02Mit dieser O" +
"ption wird die sqlcmd-Skriptvariable %[1]s festgelegt. Der Arbeitsstatio" +
"nsname ist in der Hostnamenspalte der sys.sysprocesses-Katalogsicht aufg" +
"eführt und kann mithilfe der gespeicherten Prozedur sp_who zurückgegeben" +
" werden. Wenn diese Option nicht angegeben ist, wird standardmäßig der a" +
"ktuelle Computername verwendet. Dieser Name kann zum Identifizieren vers" +
"chiedener sqlcmd-Sitzungen verwendet werden.\x02Deklariert den Anwendung" +
"sworkloadtyp beim Herstellen einer Verbindung mit einem Server. Der einz" +
"ige aktuell unterstützte Wert ist ReadOnly. Wenn %[1]s nicht angegeben i" +
"st, unterstützt das sqlcam-Hilfsprogramm die Konnektivität mit einem sek" +
"undären Replikat in einer Always-On-Verfügbarkeitsgruppe nicht.\x02Diese" +
"r Schalter wird vom Client verwendet, um eine verschlüsselte Verbindung " +
"anzufordern.\x02Gibt den Hostnamen im Serverzertifikat an.\x02Druckt die" +
" Ausgabe im vertikalen Format. Mit dieser Option wird die sqlcmd-Skriptv" +
"ariable %[1]s auf „%[2]s“ festgelegt. Der Standardwert lautet FALSCH." +
"\x02%[1]s Leitet Fehlermeldungen mit Schweregrad >= 11 Ausgabe an stderr" +
" um. Übergeben Sie 1, um alle Fehler einschließlich PRINT umzuleiten." +
"\x02Ebene der zu druckenden MSSQL-Treibermeldungen\x02Gibt an, dass sqlc" +
"md bei einem Fehler beendet wird und einen %[1]s-Wert zurückgibt\x02Steu" +
"ert, welche Fehlermeldungen an %[1]s gesendet werden. Nachrichten mit ei" +
"nem Schweregrad größer oder gleich dieser Ebene werden gesendet.\x02Gibt" +
" die Anzahl der Zeilen an, die zwischen den Spaltenüberschriften gedruck" +
"t werden sollen. Verwenden Sie -h-1, um anzugeben, dass Header nicht ged" +
"ruckt werden\x02Gibt an, dass alle Ausgabedateien mit Little-Endian-Unic" +
"ode codiert sind\x02Gibt das Spaltentrennzeichen an. Legt die %[1]s-Vari" +
"able fest.\x02Nachfolgende Leerzeichen aus einer Spalte entfernen\x02Aus" +
" Gründen der Abwärtskompatibilität bereitgestellt. Sqlcmd optimiert imme" +
"r die Erkennung des aktiven Replikats eines SQL-Failoverclusters.\x02Ken" +
"nwort\x02Steuert den Schweregrad, mit dem die Variable %[1]s beim Beende" +
"n festgelegt wird.\x02Gibt die Bildschirmbreite für die Ausgabe an\x02%[" +
"1]s Server auflisten. Übergeben Sie %[2]s, um die Ausgabe \x22Servers:" +
"\x22 auszulassen.\x02Dedizierte Adminverbindung\x02Aus Gründen der Abwär" +
"tskompatibilität bereitgestellt. Bezeichner in Anführungszeichen sind im" +
"mer aktiviert.\x02Aus Gründen der Abwärtskompatibilität bereitgestellt. " +
"Regionale Clienteinstellungen werden nicht verwendet.\x02%[1]s Entfernen" +
" Sie Steuerzeichen aus der Ausgabe. Übergeben Sie 1, um ein Leerzeichen " +
"pro Zeichen zu ersetzen, 2 für ein Leerzeichen pro aufeinanderfolgende Z" +
"eichen.\x02Echoeingabe\x02Spaltenverschlüsselung aktivieren\x02Neues Ken" +
"nwort\x02Neues Kennwort und Beenden\x02Legt die sqlcmd-Skriptvariable %[" +
"1]s fest\x02'%[1]s %[2]s': Der Wert muss größer oder gleich %#[3]v und k" +
"leiner oder gleich %#[4]v sein.\x02\x22%[1]s %[2]s\x22: Der Wert muss gr" +
"ößer als %#[3]v und kleiner als %#[4]v sein.\x02\x22%[1]s %[2]s\x22: Un" +
"erwartetes Argument. Der Argumentwert muss %[3]v sein.\x02\x22%[1]s %[2]" +
"s\x22: Unerwartetes Argument. Der Argumentwert muss einer der %[3]v sein" +
".\x02Die Optionen %[1]s und %[2]s schließen sich gegenseitig aus.\x02'%[" +
"1]s': Fehlendes Argument. Geben Sie \x22-?\x22 ein, um die Hilfe anzuzei" +
"gen.\x02'%[1]s': Unbekannte Option. Mit \x22-?\x22 rufen Sie die Hilfe a" +
"uf.\x02Fehler beim Erstellen der Ablaufverfolgungsdatei „%[1]s“: %[2]v" +
"\x02Fehler beim Starten der Ablaufverfolgung: %[1]v\x02Ungültiges Batcha" +
"bschlusszeichen '%[1]s'\x02Neues Kennwort eingeben:\x02sqlcmd: SQL Serve" +
"r, Azure SQL und Tools installieren/erstellen/abfragen\x04\x00\x01 \x10" +
"\x02Sqlcmd: Fehler:\x04\x00\x01 \x11\x02Sqlcmd: Warnung:\x02Die Befehle " +
"\x22ED\x22 und \x22!!<command>\x22, Startskript und Umgebungsvariablen s" +
"ind deaktiviert\x02Die Skriptvariable: '%[1]s' ist schreibgeschützt.\x02" +
"Die '%[1]s'-Skriptvariable ist nicht definiert.\x02Die Umgebungsvariable" +
" '%[1]s' hat einen ungültigen Wert: '%[2]s'.\x02Syntaxfehler in Zeile %[" +
"1]d in der Nähe des Befehls '%[2]s'.\x02%[1]s Fehler beim Öffnen oder Au" +
"sführen der Datei %[2]s (Ursache: %[3]s).\x02%[1]sSyntaxfehler in Zeile " +
"%[2]d\x02Timeout abgelaufen\x02Meldung %#[1]v, Ebene %[2]d, Status %[3]d" +
", Server %[4]s, Prozedur %[5]s, Zeile %#[6]v%[7]s\x02Meldung %#[1]v, Ebe" +
"ne %[2]d, Status %[3]d, Server %[4]s, Zeile %#[5]v%[6]s\x02Kennwort:\x02" +
"(1 Zeile betroffen)\x02(%[1]d Zeilen betroffen)\x02Ungültiger Variablenb" +
"ezeichner %[1]s\x02Ungültiger Variablenwert %[1]s"
var en_USIndex = []uint32{ // 311 elements
// Entry 0 - 1F
0x00000000, 0x0000002c, 0x00000062, 0x0000007a,
0x000000b3, 0x000000cb, 0x00000100, 0x00000136,
0x00000176, 0x000001a6, 0x000001dd, 0x00000205,
0x00000211, 0x00000234, 0x0000024d, 0x00000261,
0x00000271, 0x00000287, 0x000002a1, 0x000002bc,
0x000002cf, 0x000002f0, 0x0000031d, 0x00000347,
0x0000035c, 0x00000375, 0x00000396, 0x000003cc,
0x000003f1, 0x00000426, 0x00000488, 0x000004c9,
// Entry 20 - 3F
0x00000515, 0x0000052d, 0x0000053c, 0x00000565,
0x0000057c, 0x000005b5, 0x000005ea, 0x00000601,
0x00000622, 0x00000673, 0x0000068a, 0x00000699,
0x000006db, 0x000006f8, 0x000006fe, 0x00000724,
0x00000779, 0x000007bd, 0x000007d7, 0x000007e5,
0x00000840, 0x0000085d, 0x00000884, 0x000008a7,
0x000008ce, 0x000008e7, 0x00000908, 0x0000095c,
0x0000096f, 0x0000097c, 0x0000098c, 0x000009a8,
// Entry 40 - 5F
0x000009c2, 0x000009e5, 0x000009f4, 0x00000a0c,
0x00000a23, 0x00000a41, 0x00000a78, 0x00000aa7,
0x00000ac7, 0x00000adb, 0x00000af1, 0x00000b0c,
0x00000b21, 0x00000b5a, 0x00000b96, 0x00000bd1,
0x00000c1f, 0x00000c2a, 0x00000c5f, 0x00000c96,
0x00000cdd, 0x00000d12, 0x00000d41, 0x00000d6c,
0x00000d82, 0x00000d9a, 0x00000dde, 0x00000df1,
0x00000e30, 0x00000e6e, 0x00000e9e, 0x00000ec5,
// Entry 60 - 7F
0x00000edb, 0x00000f19, 0x00000f40, 0x00000f76,
0x00000faf, 0x00000fc2, 0x00000ff6, 0x00001025,
0x00001070, 0x000010a6, 0x000010c2, 0x000010d3,
0x00001106, 0x00001139, 0x00001153, 0x00001182,
0x000011b9, 0x000011d1, 0x000011f0, 0x00001203,
0x0000121e, 0x00001265, 0x00001274, 0x00001294,
0x000012ad, 0x000012bb, 0x000012d2, 0x00001311,
0x0000131c, 0x00001336, 0x00001349, 0x0000137e,
// Entry 80 - 9F
0x000013b0, 0x000013dd, 0x00001409, 0x00001429,
0x00001441, 0x00001468, 0x00001498, 0x000014ce,
0x000014fc, 0x00001529, 0x0000154a, 0x00001563,
0x0000158b, 0x000015bc, 0x000015ee, 0x00001618,
0x00001641, 0x0000165e, 0x00001673, 0x00001697,
0x000016c4, 0x000016dc, 0x0000171c, 0x00001746,
0x0000175f, 0x00001778, 0x00001795, 0x000017be,
0x000017fe, 0x00001839, 0x0000186d, 0x00001883,
// Entry A0 - BF
0x0000189a, 0x000018c7, 0x000018f4, 0x0000193a,
0x00001975, 0x00001990, 0x000019aa, 0x000019cf,
0x000019f4, 0x00001a17, 0x00001a44, 0x00001a78,
0x00001aa7, 0x00001af4, 0x00001b3b, 0x00001b60,
0x00001b85, 0x00001bc2, 0x00001c00, 0x00001c2f,
0x00001c6a, 0x00001c7c, 0x00001cb9, 0x00001cc8,
0x00001d06, 0x00001d4f, 0x00001d69, 0x00001d80,
0x00001d9a, 0x00001db1, 0x00001db8, 0x00001de8,
// Entry C0 - DF
0x00001e0a, 0x00001e34, 0x00001e5e, 0x00001e83,
0x00001e9d, 0x00001ebf, 0x00001ed1, 0x00001eea,
0x00001efc, 0x00001f46, 0x00001f71, 0x00001f7a,
0x00001fe5, 0x00002004, 0x0000201f, 0x00002037,
0x00002060, 0x0000209e, 0x000020e4, 0x00002147,
0x00002175, 0x000021a1, 0x000021cf, 0x000021d9,
0x000021fe, 0x0000220b, 0x00002224, 0x00002249,
0x000022d0, 0x00002309, 0x00002350, 0x00002393,
// Entry E0 - FF
0x000023e3, 0x000023ec, 0x0000241b, 0x00002445,
0x00002459, 0x00002460, 0x000024a9, 0x000024f1,
0x0000258f, 0x000025c4, 0x000025e7, 0x00002622,
0x0000270d, 0x000027b1, 0x000027ec, 0x00002865,
0x000028fd, 0x00002979, 0x000029e6, 0x00002a64,
0x00002ac3, 0x00002bb3, 0x00002c88, 0x00002da5,
0x00002f40, 0x0000301e, 0x0000316d, 0x00003267,
0x000032ac, 0x000032df, 0x0000335b, 0x000033d2,
// Entry 100 - 11F
0x000033fa, 0x00003445, 0x000034c5, 0x00003538,
0x0000357f, 0x000035c2, 0x000035e7, 0x0000365e,
0x00003667, 0x000036b2, 0x000036d8, 0x00003712,
0x00003735, 0x00003780, 0x000037cb, 0x0000384d,
0x00003858, 0x00003871, 0x0000387e, 0x00003894,
0x000038bd, 0x0000391c, 0x00003963, 0x000039a7,
0x000039f2, 0x00003a2a, 0x00003a5a, 0x00003a88,
0x00003ab3, 0x00003ad0, 0x00003af1, 0x00003b05,
// Entry 120 - 13F
0x00003b43, 0x00003b57, 0x00003b6d, 0x00003bc1,
0x00003bee, 0x00003c16, 0x00003c54, 0x00003c85,
0x00003cd4, 0x00003cf4, 0x00003d04, 0x00003d5a,
0x00003d9f, 0x00003da9, 0x00003dba, 0x00003dd0,
0x00003df2, 0x00003e0f, 0x00003e41, 0x00003e9b,
0x00003f4b, 0x00004046, 0x00004093,
} // Size: 1268 bytes
const en_USData string = "" + // Size: 16531 bytes
"\x02Install/Create, Query, Uninstall SQL Server\x02View configuration in" +
"formation and connection strings\x04\x02\x0a\x0a\x00\x12\x02Feedback:" +
"\x0a %[1]s\x02help for backwards compatibility flags (-S, -U, -E etc.)" +
"\x02print version of sqlcmd\x02log level, error=0, warn=1, info=2, debug" +
"=3, trace=4\x02Modify sqlconfig files using subcommands like \x22%[1]s" +
"\x22\x02Add context for existing endpoint and user (use %[1]s or %[2]s)" +
"\x02Install/Create SQL Server, Azure SQL, and Tools\x02Open tools (e.g A" +
"zure Data Studio) for current context\x02Run a query against the current" +
" context\x02Run a query\x02Run a query using [%[1]s] database\x02Set new" +
" default database\x02Command text to run\x02Database to use\x02Start cur" +
"rent context\x02Start the current context\x02To view available contexts" +
"\x02No current context\x02Starting %[1]q for context %[2]q\x04\x00\x01 (" +
"\x02Create new context with a sql container\x02Current context does not " +
"have a container\x02Stop current context\x02Stop the current context\x02" +
"Stopping %[1]q for context %[2]q\x04\x00\x01 1\x02Create a new context w" +
"ith a SQL Server container\x02Uninstall/Delete the current context\x02Un" +
"install/Delete the current context, no user prompt\x02Uninstall/Delete t" +
"he current context, no user prompt and override safety check for user da" +
"tabases\x02Quiet mode (do not stop for user input to confirm the operati" +
"on)\x02Complete the operation even if non-system (user) database files a" +
"re present\x02View available contexts\x02Create context\x02Create contex" +
"t with SQL Server container\x02Add a context manually\x02Current context" +
" is %[1]q. Do you want to continue? (Y/N)\x02Verifying no user (non-syst" +
"em) database (.mdf) files\x02To start the container\x02To override the c" +
"heck, use %[1]s\x02Container is not running, unable to verify that user " +
"database files do not exist\x02Removing context %[1]s\x02Stopping %[1]s" +
"\x02Container %[1]q no longer exists, continuing to remove context..." +
"\x02Current context is now %[1]s\x02%[1]v\x02If the database is mounted," +
" run %[1]s\x02Pass in the flag %[1]s to override this safety check for u" +
"ser (non-system) databases\x02Unable to continue, a user (non-system) da" +
"tabase (%[1]s) is present\x02No endpoints to uninstall\x02Add a context" +
"\x02Add a context for a local instance of SQL Server on port 1433 using " +
"trusted authentication\x02Display name for the context\x02Name of endpoi" +
"nt this context will use\x02Name of user this context will use\x02View e" +
"xisting endpoints to choose from\x02Add a new local endpoint\x02Add an a" +
"lready existing endpoint\x02Endpoint required to add context. Endpoint " +
"'%[1]v' does not exist. Use %[2]s flag\x02View list of users\x02Add the" +
" user\x02Add an endpoint\x02User '%[1]v' does not exist\x02Open in Azure" +
" Data Studio\x02To start interactive query session\x02To run a query\x02" +
"Current Context '%[1]v'\x02Add a default endpoint\x02Display name for th" +
"e endpoint\x02The network address to connect to, e.g. 127.0.0.1 etc.\x02" +
"The network port to connect to, e.g. 1433 etc.\x02Add a context for this" +
" endpoint\x02View endpoint names\x02View endpoint details\x02View all en" +
"dpoints details\x02Delete this endpoint\x02Endpoint '%[1]v' added (addre" +
"ss: '%[2]v', port: '%[3]v')\x02Add a user (using the SQLCMD_PASSWORD env" +
"ironment variable)\x02Add a user (using the SQLCMDPASSWORD environment v" +
"ariable)\x02Add a user using Windows Data Protection API to encrypt pass" +
"word in sqlconfig\x02Add a user\x02Display name for the user (this is no" +
"t the username)\x02Authentication type this user will use (basic | other" +
")\x02The username (provide password in %[1]s or %[2]s environment variab" +
"le)\x02Password encryption method (%[1]s) in sqlconfig file\x02Authentic" +
"ation type must be '%[1]s' or '%[2]s'\x02Authentication type '' is not v" +
"alid %[1]v'\x02Remove the %[1]s flag\x02Pass in the %[1]s %[2]s\x02The %" +
"[1]s flag can only be used when authentication type is '%[2]s'\x02Add th" +
"e %[1]s flag\x02The %[1]s flag must be set when authentication type is '" +
"%[2]s'\x02Provide password in the %[1]s (or %[2]s) environment variable" +
"\x02Authentication Type '%[1]s' requires a password\x02Provide a usernam" +
"e with the %[1]s flag\x02Username not provided\x02Provide a valid encryp" +
"tion method (%[1]s) with the %[2]s flag\x02Encryption method '%[1]v' is " +
"not valid\x02Unset one of the environment variables %[1]s or %[2]s\x04" +
"\x00\x01 4\x02Both environment variables %[1]s and %[2]s are set.\x02Use" +
"r '%[1]v' added\x02Display connections strings for the current context" +
"\x02List connection strings for all client drivers\x02Database for the c" +
"onnection string (default is taken from the T/SQL login)\x02Connection S" +
"trings only supported for %[1]s Auth type\x02Display the current-context" +
"\x02Delete a context\x02Delete a context (including its endpoint and use" +
"r)\x02Delete a context (excluding its endpoint and user)\x02Name of cont" +
"ext to delete\x02Delete the context's endpoint and user as well\x02Use t" +
"he %[1]s flag to pass in a context name to delete\x02Context '%[1]v' del" +
"eted\x02Context '%[1]v' does not exist\x02Delete an endpoint\x02Name of " +
"endpoint to delete\x02Endpoint name must be provided. Provide endpoint " +
"name with %[1]s flag\x02View endpoints\x02Endpoint '%[1]v' does not exis" +
"t\x02Endpoint '%[1]v' deleted\x02Delete a user\x02Name of user to delete" +
"\x02User name must be provided. Provide user name with %[1]s flag\x02Vi" +
"ew users\x02User %[1]q does not exist\x02User %[1]q deleted\x02Display o" +
"ne or many contexts from the sqlconfig file\x02List all the context name" +
"s in your sqlconfig file\x02List all the contexts in your sqlconfig file" +
"\x02Describe one context in your sqlconfig file\x02Context name to view " +
"details of\x02Include context details\x02To view available contexts run " +
"`%[1]s`\x02error: no context exists with the name: \x22%[1]v\x22\x02Disp" +
"lay one or many endpoints from the sqlconfig file\x02List all the endpoi" +
"nts in your sqlconfig file\x02Describe one endpoint in your sqlconfig fi" +
"le\x02Endpoint name to view details of\x02Include endpoint details\x02To" +
" view available endpoints run `%[1]s`\x02error: no endpoint exists with " +
"the name: \x22%[1]v\x22\x02Display one or many users from the sqlconfig " +
"file\x02List all the users in your sqlconfig file\x02Describe one user i" +
"n your sqlconfig file\x02User name to view details of\x02Include user de" +
"tails\x02To view available users run `%[1]s`\x02error: no user exists wi" +
"th the name: \x22%[1]v\x22\x02Set the current context\x02Set the mssql c" +
"ontext (endpoint/user) to be the current context\x02Name of context to s" +
"et as current context\x02To run a query: %[1]s\x02To remove: " +
"%[1]s\x02Switched to context \x22%[1]v\x22.\x02No context exists with th" +
"e name: \x22%[1]v\x22\x02Display merged sqlconfig settings or a specifie" +
"d sqlconfig file\x02Show sqlconfig settings, with REDACTED authenticatio" +
"n data\x02Show sqlconfig settings and raw authentication data\x02Display" +
" raw byte data\x02Install Azure Sql Edge\x02Install/Create Azure SQL Edg" +
"e in a container\x02Tag to use, use get-tags to see list of tags\x02Cont" +
"ext name (a default context name will be created if not provided)\x02Cre" +
"ate a user database and set it as the default for login\x02Accept the SQ" +
"L Server EULA\x02Generated password length\x02Minimum number of special " +
"characters\x02Minimum number of numeric characters\x02Minimum number of " +
"upper characters\x02Special character set to include in password\x02Don'" +
"t download image. Use already downloaded image\x02Line in errorlog to w" +
"ait for before connecting\x02Specify a custom name for the container rat" +
"her than a randomly generated one\x02Explicitly set the container hostna" +
"me, it defaults to the container ID\x02Specifies the image CPU architect" +
"ure\x02Specifies the image operating system\x02Port (next available port" +
" from 1433 upwards used by default)\x02Download (into container) and att" +
"ach database (.bak) from URL\x02Either, add the %[1]s flag to the comman" +
"d-line\x04\x00\x01 6\x02Or, set the environment variable i.e. %[1]s %[2]" +
"s=YES\x02EULA not accepted\x02--user-database %[1]q contains non-ASCII c" +
"hars and/or quotes\x02Starting %[1]v\x02Created context %[1]q in \x22%[2" +
"]s\x22, configuring user account...\x02Disabled %[1]q account (and rotat" +
"ed %[2]q password). Creating user %[3]q\x02Start interactive session\x02" +
"Change current context\x02View sqlcmd configuration\x02See connection st" +
"rings\x02Remove\x02Now ready for client connections on port %#[1]v\x02--" +
"using URL must be http or https\x02%[1]q is not a valid URL for --using " +
"flag\x02--using URL must have a path to .bak file\x02--using file URL mu" +
"st be a .bak file\x02Invalid --using file type\x02Creating default datab" +
"ase [%[1]s]\x02Downloading %[1]s\x02Restoring database %[1]s\x02Download" +
"ing %[1]v\x02Is a container runtime installed on this machine (e.g. Podm" +
"an or Docker)?\x04\x01\x09\x00&\x02If not, download desktop engine from:" +
"\x04\x02\x09\x09\x00\x03\x02or\x02Is a container runtime running? (Try " +
"`%[1]s` or `%[2]s` (list containers), does it return without error?)\x02" +
"Unable to download image %[1]s\x02File does not exist at URL\x02Unable t" +
"o download file\x02Install/Create SQL Server in a container\x02See all r" +
"elease tags for SQL Server, install previous version\x02Create SQL Serve" +
"r, download and attach AdventureWorks sample database\x02Create SQL Serv" +
"er, download and attach AdventureWorks sample database with different da" +
"tabase name\x02Create SQL Server with an empty user database\x02Install/" +
"Create SQL Server with full logging\x02Get tags available for Azure SQL " +
"Edge install\x02List tags\x02Get tags available for mssql install\x02sql" +
"cmd start\x02Container is not running\x02Press Ctrl+C to exit this proce" +
"ss...\x02A 'Not enough memory resources are available' error can be caus" +
"ed by too many credentials already stored in Windows Credential Manager" +
"\x02Failed to write credential to Windows Credential Manager\x02The -L p" +
"arameter can not be used in combination with other parameters.\x02'-a %#" +
"[1]v': Packet size has to be a number between 512 and 32767.\x02'-h %#[1" +
"]v': header value must be either -1 or a value between 1 and 2147483647" +
"\x02Servers:\x02Legal docs and information: aka.ms/SqlcmdLegal\x02Third " +
"party notices: aka.ms/SqlcmdNotices\x04\x00\x01\x0a\x0f\x02Version: %[1]" +
"v\x02Flags:\x02-? shows this syntax summary, %[1]s shows modern sqlcmd s" +
"ub-command help\x02Write runtime trace to the specified file. Only for a" +
"dvanced debugging.\x02Identifies one or more files that contain batches " +
"of SQL statements. If one or more files do not exist, sqlcmd will exit. " +
"Mutually exclusive with %[1]s/%[2]s\x02Identifies the file that receives" +
" output from sqlcmd\x02Print version information and exit\x02Implicitly " +
"trust the server certificate without validation\x02This option sets the " +
"sqlcmd scripting variable %[1]s. This parameter specifies the initial da" +
"tabase. The default is your login's default-database property. If the da" +
"tabase does not exist, an error message is generated and sqlcmd exits" +
"\x02Uses a trusted connection instead of using a user name and password " +
"to sign in to SQL Server, ignoring any environment variables that define" +
" user name and password\x02Specifies the batch terminator. The default v" +
"alue is %[1]s\x02The login name or contained database user name. For co" +
"ntained database users, you must provide the database name option\x02Exe" +
"cutes a query when sqlcmd starts, but does not exit sqlcmd when the quer" +
"y has finished running. Multiple-semicolon-delimited queries can be exec" +
"uted\x02Executes a query when sqlcmd starts and then immediately exits s" +
"qlcmd. Multiple-semicolon-delimited queries can be executed\x02%[1]s Spe" +
"cifies the instance of SQL Server to which to connect. It sets the sqlcm" +
"d scripting variable %[2]s.\x02%[1]s Disables commands that might compro" +