-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathcatalog.go
More file actions
3913 lines (3884 loc) · 318 KB
/
catalog.go
File metadata and controls
3913 lines (3884 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": 203,
"\tIf not, download desktop engine from:": 202,
"\n\nFeedback:\n %s": 2,
"%q is not a valid URL for --using flag": 193,
"%s Disables commands that might compromise system security. Passing 1 tells sqlcmd to exit when disabled commands are run.": 243,
"%s Error occurred while opening or operating on file %s (Reason: %s).": 296,
"%s List servers. Pass %s to omit 'Servers:' output.": 267,
"%s Redirects error messages with severity >= 11 output to stderr. Pass 1 to to redirect all errors including PRINT.": 255,
"%s Remove control characters from output. Pass 1 to substitute a space per character, 2 for a space per consecutive characters": 271,
"%s Specifies the instance of SQL Server to which to connect. It sets the sqlcmd scripting variable %s.": 242,
"%sSyntax error at line %d": 297,
"%v": 46,
"'%s %s': Unexpected argument. Argument value has to be %v.": 279,
"'%s %s': Unexpected argument. Argument value has to be one of %v.": 280,
"'%s %s': value must be greater than %#v and less than %#v.": 278,
"'%s %s': value must be greater than or equal to %#v and less than or equal to %#v.": 277,
"'%s' scripting variable not defined.": 293,
"'%s': Missing argument. Enter '-?' for help.": 282,
"'%s': Unknown Option. Enter '-?' for help.": 283,
"'-a %#v': Packet size has to be a number between 512 and 32767.": 223,
"'-h %#v': header value must be either -1 or a value between 1 and 2147483647": 224,
"(%d rows affected)": 303,
"(1 row affected)": 302,
"--user-database %q contains non-ASCII chars and/or quotes": 182,
"--using URL must be http or https": 192,
"--using URL must have a path to .bak file": 194,
"--using file URL must be a .bak file": 195,
"-? shows this syntax summary, %s shows modern sqlcmd sub-command help": 230,
"A 'Not enough memory resources are available' error can be caused by too many credentials already stored in Windows Credential Manager": 220,
"Accept the SQL Server EULA": 165,
"Add a context": 51,
"Add a context for a local instance of SQL Server on port 1433 using trusted authentication": 52,
"Add a context for this endpoint": 72,
"Add a context manually": 36,
"Add a default endpoint": 68,
"Add a new local endpoint": 57,
"Add a user": 81,
"Add a user (using the SQLCMDPASSWORD environment variable)": 79,
"Add a user (using the SQLCMD_PASSWORD environment variable)": 78,
"Add a user using Windows Data Protection API to encrypt password in sqlconfig": 80,
"Add an already existing endpoint": 58,
"Add an endpoint": 62,
"Add context for existing endpoint and user (use %s or %s)": 8,
"Add the %s flag": 91,
"Add the user": 61,
"Authentication Type '%s' requires a password": 94,
"Authentication type '' is not valid %v'": 87,
"Authentication type must be '%s' or '%s'": 86,
"Authentication type this user will use (basic | other)": 83,
"Both environment variables %s and %s are set. ": 100,
"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)": 246,
"Change current context": 187,
"Command text to run": 15,
"Complete the operation even if non-system (user) database files are present": 32,
"Connection Strings only supported for %s Auth type": 105,
"Container %q no longer exists, continuing to remove context...": 44,
"Container is not running": 218,
"Container is not running, unable to verify that user database files do not exist": 41,
"Context '%v' deleted": 113,
"Context '%v' does not exist": 114,
"Context name (a default context name will be created if not provided)": 163,
"Context name to view details of": 131,
"Controls the severity level that is used to set the %s variable on exit": 265,
"Controls which error messages are sent to %s. Messages that have severity level greater than or equal to this level are sent": 258,
"Create SQL Server with an empty user database": 212,
"Create SQL Server, download and attach AdventureWorks sample database": 210,
"Create SQL Server, download and attach AdventureWorks sample database with different database name": 211,
"Create a new context with a SQL Server container ": 27,
"Create a user database and set it as the default for login": 164,
"Create context": 34,
"Create context with SQL Server container": 35,
"Create new context with a sql container ": 22,
"Created context %q in \"%s\", configuring user account...": 184,
"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": 247,
"Creating default database [%s]": 197,
"Current Context '%v'": 67,
"Current context does not have a container": 23,
"Current context is %q. Do you want to continue? (Y/N)": 37,
"Current context is now %s": 45,
"Database for the connection string (default is taken from the T/SQL login)": 104,
"Database to use": 16,
"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": 251,
"Dedicated administrator connection": 268,
"Delete a context": 107,
"Delete a context (excluding its endpoint and user)": 109,
"Delete a context (including its endpoint and user)": 108,
"Delete a user": 121,
"Delete an endpoint": 115,
"Delete the context's endpoint and user as well": 111,
"Delete this endpoint": 76,
"Describe one context in your sqlconfig file": 130,
"Describe one endpoint in your sqlconfig file": 137,
"Describe one user in your sqlconfig file": 144,
"Disabled %q account (and rotated %q password). Creating user %q": 185,
"Display connections strings for the current context": 102,
"Display merged sqlconfig settings or a specified sqlconfig file": 156,
"Display name for the context": 53,
"Display name for the endpoint": 69,
"Display name for the user (this is not the username)": 82,
"Display one or many contexts from the sqlconfig file": 127,
"Display one or many endpoints from the sqlconfig file": 135,
"Display one or many users from the sqlconfig file": 142,
"Display raw byte data": 159,
"Display the current-context": 106,
"Don't download image. Use already downloaded image": 171,
"Download (into container) and attach database (.bak) from URL": 178,
"Downloading %s": 198,
"Downloading %v": 200,
"ED and !!<command> commands, startup script, and environment variables are disabled": 291,
"EULA not accepted": 181,
"Echo input": 272,
"Either, add the %s flag to the command-line": 179,
"Enable column encryption": 273,
"Encryption method '%v' is not valid": 98,
"Endpoint '%v' added (address: '%v', port: '%v')": 77,
"Endpoint '%v' deleted": 120,
"Endpoint '%v' does not exist": 119,
"Endpoint name must be provided. Provide endpoint name with %s flag": 117,
"Endpoint name to view details of": 138,
"Endpoint required to add context. Endpoint '%v' does not exist. Use %s flag": 59,
"Enter new password:": 287,
"Executes a query when sqlcmd starts and then immediately exits sqlcmd. Multiple-semicolon-delimited queries can be executed": 241,
"Executes a query when sqlcmd starts, but does not exit sqlcmd when the query has finished running. Multiple-semicolon-delimited queries can be executed": 240,
"Explicitly set the container hostname, it defaults to the container ID": 174,
"Failed to write credential to Windows Credential Manager": 221,
"File does not exist at URL": 206,
"Flags:": 229,
"Generated password length": 166,
"Get tags available for Azure SQL Edge install": 214,
"Get tags available for mssql install": 216,
"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": 232,
"Identifies the file that receives output from sqlcmd": 233,
"If the database is mounted, run %s": 47,
"Implicitly trust the server certificate without validation": 235,
"Include context details": 132,
"Include endpoint details": 139,
"Include user details": 146,
"Install Azure Sql Edge": 160,
"Install/Create Azure SQL Edge in a container": 161,
"Install/Create SQL Server in a container": 208,
"Install/Create SQL Server with full logging": 213,
"Install/Create SQL Server, Azure SQL, and Tools": 9,
"Install/Create, Query, Uninstall SQL Server": 0,
"Invalid --using file type": 196,
"Invalid variable identifier %s": 304,
"Invalid variable value %s": 305,
"Is a container runtime installed on this machine (e.g. Podman or Docker)?": 201,
"Is a container runtime running? (Try `%s` or `%s` (list containers), does it return without error?)": 204,
"Legal docs and information: aka.ms/SqlcmdLegal": 226,
"Level of mssql driver messages to print": 256,
"Line in errorlog to wait for before connecting": 172,
"List all the context names in your sqlconfig file": 128,
"List all the contexts in your sqlconfig file": 129,
"List all the endpoints in your sqlconfig file": 136,
"List all the users in your sqlconfig file": 143,
"List connection strings for all client drivers": 103,
"List tags": 215,
"Minimum number of numeric characters": 168,
"Minimum number of special characters": 167,
"Minimum number of upper characters": 169,
"Modify sqlconfig files using subcommands like \"%s\"": 7,
"Msg %#v, Level %d, State %d, Server %s, Line %#v%s": 300,
"Msg %#v, Level %d, State %d, Server %s, Procedure %s, Line %#v%s": 299,
"Name of context to delete": 110,
"Name of context to set as current context": 151,
"Name of endpoint this context will use": 54,
"Name of endpoint to delete": 116,
"Name of user this context will use": 55,
"Name of user to delete": 122,
"New password": 274,
"New password and exit": 275,
"No context exists with the name: \"%v\"": 155,
"No current context": 20,
"No endpoints to uninstall": 50,
"Now ready for client connections on port %#v": 191,
"Open in Azure Data Studio": 64,
"Open tools (e.g Azure Data Studio) for current context": 10,
"Or, set the environment variable i.e. %s %s=YES ": 180,
"Pass in the %s %s": 89,
"Pass in the flag %s to override this safety check for user (non-system) databases": 48,
"Password": 264,
"Password encryption method (%s) in sqlconfig file": 85,
"Password:": 301,
"Port (next available port from 1433 upwards used by default)": 177,
"Press Ctrl+C to exit this process...": 219,
"Print version information and exit": 234,
"Prints the output in vertical format. This option sets the sqlcmd scripting variable %s to '%s'. The default is false": 254,
"Provide a username with the %s flag": 95,
"Provide a valid encryption method (%s) with the %s flag": 97,
"Provide password in the %s (or %s) environment variable": 93,
"Provided for backward compatibility. Client regional settings are not used": 270,
"Provided for backward compatibility. Quoted identifiers are always enabled": 269,
"Provided for backward compatibility. Sqlcmd always optimizes detection of the active replica of a SQL Failover Cluster": 263,
"Quiet mode (do not stop for user input to confirm the operation)": 31,
"Remove": 190,
"Remove the %s flag": 88,
"Remove trailing spaces from a column": 262,
"Removing context %s": 42,
"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": 248,
"Restoring database %s": 199,
"Run a query": 12,
"Run a query against the current context": 11,
"Run a query using [%s] database": 13,
"See all release tags for SQL Server, install previous version": 209,
"See connection strings": 189,
"Servers:": 225,
"Set new default database": 14,
"Set the current context": 149,
"Set the mssql context (endpoint/user) to be the current context": 150,
"Sets the sqlcmd scripting variable %s": 276,
"Show sqlconfig settings and raw authentication data": 158,
"Show sqlconfig settings, with REDACTED authentication data": 157,
"Special character set to include in password": 170,
"Specifies that all output files are encoded with little-endian Unicode": 260,
"Specifies that sqlcmd exits and returns a %s value when an error occurs": 257,
"Specifies the SQL authentication method to use to connect to Azure SQL Database. One of: %s": 244,
"Specifies the batch terminator. The default value is %s": 238,
"Specifies the column separator character. Sets the %s variable.": 261,
"Specifies the host name in the server certificate.": 253,
"Specifies the image CPU architecture": 175,
"Specifies the image operating system": 176,
"Specifies the number of rows to print between the column headings. Use -h-1 to specify that headers not be printed": 259,
"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": 249,
"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.": 307,
"Specifies the screen width for output": 266,
"Specify a custom name for the container rather than a randomly generated one": 173,
"Sqlcmd: Error: ": 289,
"Sqlcmd: Warning: ": 290,
"Start current context": 17,
"Start interactive session": 186,
"Start the current context": 18,
"Starting %q for context %q": 21,
"Starting %v": 183,
"Stop current context": 24,
"Stop the current context": 25,
"Stopping %q for context %q": 26,
"Stopping %s": 43,
"Switched to context \"%v\".": 154,
"Syntax error at line %d near command '%s'.": 295,
"Tag to use, use get-tags to see list of tags": 162,
"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": 245,
"The %s and the %s options are mutually exclusive.": 281,
"The %s flag can only be used when authentication type is '%s'": 90,
"The %s flag must be set when authentication type is '%s'": 92,
"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.": 222,
"The environment variable: '%s' has invalid value: '%s'.": 294,
"The login name or contained database user name. For contained database users, you must provide the database name option": 239,
"The network address to connect to, e.g. 127.0.0.1 etc.": 70,
"The network port to connect to, e.g. 1433 etc.": 71,
"The scripting variable: '%s' is read-only": 292,
"The username (provide password in %s or %s environment variable)": 84,
"Third party notices: aka.ms/SqlcmdNotices": 227,
"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": 250,
"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": 236,
"This switch is used by the client to request an encrypted connection": 252,
"Timeout expired": 298,
"To override the check, use %s": 40,
"To remove: %s": 153,
"To run a query": 66,
"To run a query: %s": 152,
"To start interactive query session": 65,
"To start the container": 39,
"To view available contexts": 19,
"To view available contexts run `%s`": 133,
"To view available endpoints run `%s`": 140,
"To view available users run `%s`": 147,
"Unable to continue, a user (non-system) database (%s) is present": 49,
"Unable to download file": 207,
"Unable to download image %s": 205,
"Uninstall/Delete the current context": 28,
"Uninstall/Delete the current context, no user prompt": 29,
"Uninstall/Delete the current context, no user prompt and override safety check for user databases": 30,
"Unset one of the environment variables %s or %s": 99,
"Use the %s flag to pass in a context name to delete": 112,
"User %q deleted": 126,
"User %q does not exist": 125,
"User '%v' added": 101,
"User '%v' does not exist": 63,
"User name must be provided. Provide user name with %s flag": 123,
"User name to view details of": 145,
"Username not provided": 96,
"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": 237,
"Verifying no user (non-system) database (.mdf) files": 38,
"Version: %v\n": 228,
"View all endpoints details": 75,
"View available contexts": 33,
"View configuration information and connection strings": 1,
"View endpoint details": 74,
"View endpoint names": 73,
"View endpoints": 118,
"View existing endpoints to choose from": 56,
"View list of users": 60,
"View sqlcmd configuration": 188,
"View users": 124,
"Write runtime trace to the specified file. Only for advanced debugging.": 231,
"configuration file": 5,
"error: no context exists with the name: \"%v\"": 134,
"error: no endpoint exists with the name: \"%v\"": 141,
"error: no user exists with the name: \"%v\"": 148,
"failed to create trace file '%s': %v": 284,
"failed to get column types: %v": 308,
"failed to start trace: %v": 285,
"help for backwards compatibility flags (-S, -U, -E etc.)": 3,
"invalid batch terminator '%s'": 286,
"log level, error=0, warn=1, info=2, debug=3, trace=4": 6,
"print version of sqlcmd": 4,
"sqlcmd start": 217,
"sqlcmd: Install/Create/Query SQL Server, Azure SQL, and Tools": 288,
}
var de_DEIndex = []uint32{ // 310 elements
// Entry 0 - 1F
0x00000000, 0x0000003c, 0x0000007e, 0x00000096,
0x000000d1, 0x000000e9, 0x000000fd, 0x00000148,
0x00000189, 0x000001e1, 0x00000218, 0x00000258,
0x00000286, 0x00000299, 0x000002cb, 0x000002ec,
0x00000308, 0x00000321, 0x0000033b, 0x00000355,
0x00000378, 0x0000038f, 0x000003bf, 0x000003f4,
0x00000424, 0x0000043f, 0x00000459, 0x00000487,
0x000004c3, 0x000004ed, 0x00000533, 0x000005cc,
// Entry 20 - 3F
0x0000061e, 0x00000683, 0x000006a1, 0x000006b3,
0x000006de, 0x000006fa, 0x00000745, 0x000007a5,
0x000007c0, 0x00000801, 0x0000087e, 0x0000089a,
0x000008ad, 0x000008f0, 0x00000916, 0x0000091c,
0x00000951, 0x000009d4, 0x00000a47, 0x00000a7c,
0x00000a90, 0x00000b14, 0x00000b35, 0x00000b73,
0x00000ba4, 0x00000bce, 0x00000bf1, 0x00000c1a,
0x00000c95, 0x00000cb1, 0x00000cca, 0x00000cdf,
// Entry 40 - 5F
0x00000d08, 0x00000d25, 0x00000d53, 0x00000d70,
0x00000d8a, 0x00000da7, 0x00000dc9, 0x00000e24,
0x00000e77, 0x00000ea0, 0x00000eb7, 0x00000ed5,
0x00000efa, 0x00000f13, 0x00000f53, 0x00000f9a,
0x00000fe0, 0x00001058, 0x0000106d, 0x000010ad,
0x000010f6, 0x00001146, 0x00001182, 0x000011bb,
0x000011eb, 0x00001200, 0x00001217, 0x0000126d,
0x00001284, 0x000012d6, 0x00001314, 0x00001349,
// Entry 60 - 7F
0x0000137a, 0x00001397, 0x000013e3, 0x00001416,
0x0000144c, 0x00001491, 0x000014af, 0x000014ec,
0x00001527, 0x00001586, 0x000015dd, 0x000015f8,
0x00001609, 0x00001642, 0x00001670, 0x00001691,
0x000016bd, 0x0000170e, 0x00001728, 0x00001750,
0x00001762, 0x00001784, 0x000017d5, 0x000017e8,
0x00001811, 0x0000182c, 0x00001844, 0x00001866,
0x000018b7, 0x000018c9, 0x000018ec, 0x00001905,
// Entry 80 - 9F
0x00001942, 0x00001977, 0x000019a8, 0x000019d5,
0x000019fd, 0x00001a1a, 0x00001a54, 0x00001a9b,
0x00001ad9, 0x00001b0b, 0x00001b39, 0x00001b62,
0x00001b85, 0x00001bc4, 0x00001c0c, 0x00001c49,
0x00001c7a, 0x00001cae, 0x00001cd7, 0x00001cf5,
0x00001d2f, 0x00001d71, 0x00001d8d, 0x00001dcf,
0x00001e13, 0x00001e37, 0x00001e4c, 0x00001e6e,
0x00001ead, 0x00001f05, 0x00001f4b, 0x00001f96,
// Entry A0 - BF
0x00001fac, 0x00001fc8, 0x00002001, 0x00002057,
0x000020a9, 0x000020f3, 0x00002121, 0x00002142,
0x0000215e, 0x00002180, 0x000021a2, 0x000021e4,
0x00002227, 0x00002280, 0x000022e7, 0x00002347,
0x0000236a, 0x0000238b, 0x000023d7, 0x0000241a,
0x0000245b, 0x000024a2, 0x000024c5, 0x00002514,
0x00002523, 0x0000256d, 0x000025c6, 0x000025e2,
0x000025fc, 0x0000261a, 0x0000263c, 0x00002646,
// Entry C0 - DF
0x0000267a, 0x000026a5, 0x000026d9, 0x00002712,
0x00002741, 0x0000275e, 0x00002786, 0x000027a1,
0x000027c8, 0x000027e1, 0x00002837, 0x00002872,
0x0000287d, 0x00002909, 0x00002936, 0x00002962,
0x0000298c, 0x000029c1, 0x00002a0b, 0x00002a61,
0x00002ad8, 0x00002b10, 0x00002b55, 0x00002b98,
0x00002ba7, 0x00002bdc, 0x00002be9, 0x00002c0a,
0x00002c3f, 0x00002d32, 0x00002d88, 0x00002ddb,
// Entry E0 - FF
0x00002e25, 0x00002e8a, 0x00002e92, 0x00002ecd,
0x00002efe, 0x00002f12, 0x00002f19, 0x00002f7c,
0x00002fd8, 0x0000309c, 0x000030d7, 0x00003101,
0x0000314e, 0x0000326b, 0x00003347, 0x00003385,
0x0000341a, 0x000034d8, 0x00003575, 0x00003601,
0x000036ac, 0x00003752, 0x00003884, 0x00003984,
0x00003acb, 0x00003cb2, 0x00003dd9, 0x00003f7e,
0x000040b3, 0x0000410e, 0x00004139, 0x000041d5,
// Entry 100 - 11F
0x00004261, 0x00004290, 0x000042e4, 0x00004373,
0x00004415, 0x0000445e, 0x0000449d, 0x000044d1,
0x00004561, 0x0000456a, 0x000045bc, 0x000045ea,
0x0000463f, 0x0000465a, 0x000046ca, 0x00004739,
0x000047e2, 0x000047ee, 0x00004811, 0x00004820,
0x0000483b, 0x00004865, 0x000048c3, 0x00004911,
0x00004959, 0x000049ab, 0x000049e9, 0x00004a33,
0x00004a71, 0x00004ab5, 0x00004ae5, 0x00004b0f,
// Entry 120 - 13F
0x00004b28, 0x00004b70, 0x00004b85, 0x00004b9b,
0x00004bf3, 0x00004c26, 0x00004c56, 0x00004c99,
0x00004cd7, 0x00004d23, 0x00004d44, 0x00004d57,
0x00004db2, 0x00004dfd, 0x00004e07, 0x00004e1b,
0x00004e34, 0x00004e5a, 0x00004e7a, 0x00004e7a,
0x00004e7a, 0x00004e7a,
} // Size: 1264 bytes
const de_DEData string = "" + // Size: 20090 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\x02Konfigurationsdate" +
"i\x02Protokolliergrad, Fehler=0, Warnung=1, Info=2, Debug=3, Ablaufverfo" +
"lgung=4\x02SQLConfig-Dateien mithilfe von Unterbefehlen wie \x22%[1]s" +
"\x22 ändern\x02Kontext für vorhandenen Endpunkt und Benutzer hinzufügen " +
"(%[1]s oder %[2]s verwenden)\x02SQL Server, Azure SQL und Tools installi" +
"eren/erstellen\x02Tools (z.\u00a0B. Azure Data Studio) für aktuellen Kon" +
"text öffnen\x02Abfrage für den aktuellen Kontext ausführen\x02Abfrage au" +
"sführen\x02Abfrage mithilfe der [%[1]s]-Datenbank ausführen\x02Neue Stan" +
"darddatenbank festlegen\x02Auszuführender Befehlstext\x02Zu verwendende " +
"Datenbank\x02Aktuellen Kontext starten\x02Aktuellen Kontext starten\x02Z" +
"um Anzeigen verfügbarer Kontexte\x02Kein aktueller Kontext\x02%[1]q für " +
"kontextbezogene %[2]q wird gestartet\x04\x00\x01 0\x02Neuen Kontext mit " +
"einem SQL-Container erstellen\x02Der aktuelle Kontext weist keinen Conta" +
"iner auf\x02Aktuellen Kontext anhalten\x02Aktuellen Kontext beenden\x02%" +
"[1]q für kontextbezogene %[2]q wird beendet\x04\x00\x01 7\x02Neuen Konte" +
"xt mit einem SQL Server-Container erstellen\x02Aktuellen Kontext deinsta" +
"llieren/löschen\x02Aktuellen Kontext deinstallieren/löschen, keine Benut" +
"zeraufforderung\x02Aktuellen Kontext deinstallieren/löschen, keine Benut" +
"zeraufforderung anzeigen und Sicherheitsüberprüfung für Benutzerdatenban" +
"ken außer Kraft setzen\x02Stiller Modus (nicht für Benutzereingabe beend" +
"en, um den Vorgang zu bestätigen)\x02Vorgang auch dann abschließen, wenn" +
" nicht systembasierte (Benutzer-)Datenbankdateien vorhanden sind\x02Verf" +
"ügbare Kontexte anzeigen\x02Kontext erstellen\x02Kontext mit SQL Server" +
"-Container erstellen\x02Kontext manuell hinzufügen\x02Der aktuelle Konte" +
"xt ist %[1]q. Möchten Sie den Vorgang fortsetzen? (J/N)\x02Es wird überp" +
"rüft, dass keine Benutzer- (Nicht-System-)Datenbankdateien (.mdf) vorhan" +
"den sind\x02Zum Starten des Containers\x02Um die Überprüfung außer Kraft" +
" zu setzen, verwenden Sie %[1]s\x02Der Container wird nicht ausgeführt. " +
"Es kann nicht überprüft werden, ob die Benutzerdatenbankdateien nicht vo" +
"rhanden sind\x02Kontext %[1]s wird entfernt\x02%[1]s wird beendet\x02Con" +
"tainer %[1]q nicht mehr vorhanden. Der Kontext wird entfernt...\x02Der a" +
"ktuelle Kontext ist jetzt %[1]s.\x02%[1]v\x02Wenn die Datenbank eingebun" +
"den ist, %[1]s ausführen\x02Flag %[1]s übergeben, um diese Sicherheitsüb" +
"erprüfung für Benutzerdatenbanken (keine Systemdatenbanken) außer Kraft " +
"zu setzen\x02Der Vorgang kann nicht fortgesetzt werden, da eine Benutzer" +
"datenbank (keine Systemdatenbank) (%[1]s) vorhanden ist\x02Es sind keine" +
" Endpunkte zur Deinstallation vorhanden\x02Kontext hinzufügen\x02Einen K" +
"ontext für eine lokale Instanz von SQL Server an Port 1433 mithilfe eine" +
"r vertrauenswürdigen Authentifizierung hinzufügen\x02Der Anzeigename für" +
" den Kontext\x02Der Name des Endpunkts, der von diesem Kontext verwendet" +
" wird\x02Name des Benutzers, den dieser Kontext verwendet\x02Vorhandene " +
"Endpunkte zur Auswahl anzeigen\x02Neuen lokalen Endpunkt hinzufügen\x02B" +
"ereits vorhandenen Endpunkt hinzufügen\x02Zum Hinzufügen des Kontexts is" +
"t ein Endpunkt erforderlich. Der Endpunkt '%[1]v' ist nicht vorhanden. %" +
"[2]s-Flag verwenden\x02Liste der Benutzer anzeigen\x02Den Benutzer hinzu" +
"fügen\x02Endpunkt hinzufügen\x02Der Benutzer '%[1]v' ist nicht vorhanden" +
"\x02In Azure Data Studio öffnen\x02Zum Starten einer interaktiven Abfrag" +
"esitzung\x02Zum Ausführen einer Abfrage\x02Aktueller Kontext '%[1]v'\x02" +
"Standardendpunkt hinzufügen\x02Der Anzeigename für den Endpunkt\x02Die N" +
"etzwerkadresse, mit der eine Verbindung hergestellt werden soll, z. B. 1" +
"27.0.0.1 usw.\x02Der Netzwerkport, mit dem eine Verbindung hergestellt w" +
"erden soll, z. B. 1433 usw.\x02Kontext für diesen Endpunkt hinzufügen" +
"\x02Endpunktnamen anzeigen\x02Details zum Endpunkt anzeigen\x02Details z" +
"u allen Endpunkten anzeigen\x02Diesen Endpunkt löschen\x02Endpunkt '%[1]" +
"v' hinzugefügt (Adresse: '%[2]v', Port: '%[3]v')\x02Benutzer hinzufügen " +
"(mithilfe der Umgebungsvariablen SQLCMD_PASSWORD)\x02Benutzer hinzufügen" +
" (mithilfe der Umgebungsvariablen SQLCMDPASSWORD)\x02Einen Benutzer hinz" +
"ufügen, der die Windows Data Protection-API zum Verschlüsseln des Kennwo" +
"rts in SQLConfig verwendet\x02Benutzer hinzufügen\x02Anzeigename für den" +
" Benutzer (dies ist nicht der Benutzername)\x02Authentifizierungstyp, de" +
"n dieser Benutzer verwendet (Standard | andere)\x02Der Benutzername (Ken" +
"nwort in der Umgebungsvariablen %[1]s (oder %[2]s angeben)\x02Kennwortve" +
"rschlüsselungsmethode (%[1]s) in SQLConfig-Datei\x02Der Authentifizierun" +
"gstyp muss '%[1]s' oder '%[2]s' sein\x02Der Authentifizierungstyp '%[1]v" +
"' ist ungültig\x02Flag %[1]s entfernen\x02%[1]s %[2]s übergeben\x02Das F" +
"lag %[1]s kann nur verwendet werden, wenn der Authentifizierungstyp '%[2" +
"]s' ist.\x02Flag %[1]s hinzufügen\x02Das Flag %[1]s muss verwendet werde" +
"n, wenn der Authentifizierungstyp '%[2]s' ist.\x02Kennwort in der Umgebu" +
"ngsvariablen %[1]s (oder %[2]s) angeben\x02Authentifizierungstyp '%[1]s'" +
" erfordert ein Kennwort\x02Einen Benutzernamen mit dem Flag \x22%[1]s" +
"\x22 angeben\x02Benutzername nicht angegeben\x02Eine gültige Verschlüsse" +
"lungsmethode (%[1]s) mit dem Flag \x22%[2]s\x22 angeben\x02Die Verschlüs" +
"selungsmethode '%[1]v' ist ungültig\x02Eine der Umgebungsvariablen %[1]s" +
" oder %[2]s löschen\x04\x00\x01 @\x02Sowohl Umgebungsvariablen %[1]s als" +
" auch %[2]s sind festgelegt.\x02Benutzer '%[1]v' hinzugefügt\x02Verbindu" +
"ngszeichenfolgen für den aktuellen Kontext anzeigen\x02Verbindungszeiche" +
"nfolgen für alle Clienttreiber auflisten\x02Datenbank für die Verbindung" +
"szeichenfolge (Standard wird aus der T/SQL-Anmeldung übernommen)\x02Verb" +
"indungszeichenfolgen werden nur für den Authentifizierungstyp %[1]s unte" +
"rstützt.\x02Aktuellen Kontext anzeigen\x02Kontext löschen\x02Kontext lös" +
"chen (einschließlich Endpunkt und Benutzer)\x02Kontext löschen (ohne End" +
"punkt und Benutzer)\x02Name des zu löschenden Kontexts\x02Endpunkt und B" +
"enutzer des Kontexts löschen\x02Das Flag „%[1]s“ verwenden, um einen Kon" +
"textnamen zum Löschen zu übergeben\x02Kontext '%[1]v' gelöscht\x02Kontex" +
"t „%[1]v“ ist nicht vorhanden\x02Endpunkt löschen\x02Name des zu löschen" +
"den Endpunkts\x02Der Endpunktname muss angegeben werden. Geben Sie den E" +
"ndpunktnamen mit %[1]s an\x02Endpunkte anzeigen\x02Endpunkt „%[1]v“ ist " +
"nicht vorhanden\x02Endpunkt \x22%[1]v\x22 gelöscht\x02Einen Benutzer lös" +
"chen\x02Name des zu löschenden Benutzers\x02Der Benutzername muss angege" +
"ben werden. Geben Sie den Benutzernamen mit %[1]s an\x02Benutzer anzeige" +
"n\x02Benutzer %[1]q ist nicht vorhanden\x02Benutzer %[1]q gelöscht\x02Ei" +
"nen oder mehrere Kontexte aus der SQLConfig-Datei anzeigen\x02Alle Konte" +
"xtnamen in Ihrer SQLConfig-Datei auflisten\x02Alle Kontexte in Ihrer SQL" +
"Config-Datei auflisten\x02Kontext in Ihrer SQLConfig-Datei beschreiben" +
"\x02Kontextname zum Anzeigen von Details zu\x02Kontextdetails einschließ" +
"en\x02Zum Anzeigen verfügbarer Kontexte „%[1]s“ ausführen\x02Fehler: Es " +
"ist kein Kontext mit folgendem Namen vorhanden: „%[1]v“\x02Einen oder me" +
"hrere Endpunkte aus der SQLConfig-Datei anzeigen\x02Alle Endpunkte in Ih" +
"rer SQLConfig-Datei auflisten\x02Endpunkt in Ihrer SQLConfig-Datei besch" +
"reiben\x02Endpunktname zum Anzeigen von Details zu\x02Details zum Endpun" +
"kt einschließen\x02Zum Anzeigen der verfügbaren Endpunkte „%[1]s“ ausfüh" +
"ren\x02Fehler: Es ist kein Endpunkt mit folgendem Namen vorhanden: „%[1]" +
"v“\x02Einen oder mehrere Benutzer aus der SQLConfig-Datei anzeigen\x02Al" +
"le Benutzer in Ihrer SQLConfig-Datei auflisten\x02Einen Benutzer in Ihre" +
"r SQLConfig-Datei beschreiben\x02Benutzername zum Anzeigen von Details z" +
"u\x02Benutzerdetails einschließen\x02Zum Anzeigen verfügbarer Benutzer „" +
"%[1]s“ ausführen\x02Fehler: Es ist kein Benutzer vorhanden mit dem Namen" +
": „%[1]v“\x02Aktuellen Kontext festlegen\x02mssql-Kontext (Endpunkt/Benu" +
"tzer) als aktuellen Kontext festlegen\x02Name des Kontexts, der als aktu" +
"eller Kontext festgelegt werden soll\x02Zum Ausführen einer Abfrage: %[1" +
"]s\x02Zum Entfernen: %[1]s\x02Zu Kontext „%[1]v“ gewechselt\x02Es ist ke" +
"in Kontext mit folgendem Namen vorhanden: „%[1]v“\x02Zusammengeführte SQ" +
"LConfig-Einstellungen oder eine angegebene SQLConfig-Datei anzeigen\x02S" +
"QLConfig-Einstellungen mit REDACTED-Authentifizierungsdaten anzeigen\x02" +
"SQLConfig-Einstellungen und unformatierte Authentifizierungsdaten anzeig" +
"en\x02Rohbytedaten anzeigen\x02Azure SQL Edge installieren\x02Azure SQL " +
"Edge in einem Container installieren/erstellen\x02Zu verwendende Markier" +
"ung. Verwenden Sie get-tags, um eine Liste der Tags anzuzeigen.\x02Konte" +
"xtname (ein Standardkontextname wird erstellt, wenn er nicht angegeben w" +
"ird)\x02Benutzerdatenbank erstellen und als Standard für die Anmeldung f" +
"estlegen\x02Lizenzbedingungen für SQL Server akzeptieren\x02Länge des ge" +
"nerierten Kennworts\x02Mindestanzahl Sonderzeichen\x02Mindestanzahl nume" +
"rischer Zeichen\x02Mindestanzahl von Großbuchstaben\x02Sonderzeichensatz" +
", der in das Kennwort eingeschlossen werden soll\x02Bild nicht herunterl" +
"aden. Bereits heruntergeladenes Bild verwenden\x02Zeile im Fehlerprotoko" +
"ll, auf die vor dem Herstellen der Verbindung gewartet werden soll\x02Ei" +
"nen benutzerdefinierten Namen für den Container anstelle eines zufällig " +
"generierten Namens angeben\x02Legen Sie den Containerhostnamen explizit " +
"fest. Standardmäßig wird die Container-ID verwendet\x02Gibt die Image-CP" +
"U-Architektur an.\x02Gibt das Image-Betriebssystem an\x02Port (der nächs" +
"te verfügbare Port ab 1433 wird standardmäßig verwendet)\x02Herunterlade" +
"n (in Container) und Datenbank (.bak) von URL anfügen\x02Fügen Sie der B" +
"efehlszeile entweder das Flag „%[1]s“ hinzu.\x04\x00\x01 B\x02Oder legen" +
" Sie die Umgebungsvariable fest, d.\u00a0h. %[1]s %[2]s=YES\x02Lizenzbed" +
"ingungen nicht akzeptiert\x02--user-database %[1]q enthält Nicht-ASCII-Z" +
"eichen und/oder Anführungszeichen\x02Starting %[1]v\x02Kontext %[1]q in " +
"„%[2]s“ erstellt, Benutzerkonto wird konfiguriert...\x02%[1]q-Konto wu" +
"rde deaktiviert (und %[2]q Kennwort gedreht). Benutzer %[3]q wird erstel" +
"lt\x02Interaktive Sitzung starten\x02Aktuellen Kontext ändern\x02sqlcmd-" +
"Konfiguration anzeigen\x02Verbindungszeichenfolgen anzeigen\x02Entfernen" +
"\x02Jetzt bereit für Clientverbindungen an Port %#[1]v\x02Die --using-UR" +
"L muss http oder https sein.\x02%[1]q ist keine gültige URL für das --us" +
"ing-Flag.\x02Die --using-URL muss einen Pfad zur BAK-Datei aufweisen." +
"\x02Die --using-Datei-URL muss eine BAK-Datei sein\x02Ungültiger --using" +
"-Dateityp\x02Standarddatenbank wird erstellt [%[1]s]\x02%[1]s wird herun" +
"tergeladen\x02Datenbank %[1]s wird wiederhergestellt\x02%[1]v wird herun" +
"terladen\x02Ist eine Containerruntime 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ührt? (Probieren Sie '%[1]s' oder '%[2]s' aus (C" +
"ontainer auflisten). Wird er ohne Fehler zurückgegeben?)\x02Bild %[1]s k" +
"ann nicht heruntergeladen werden\x02Die Datei ist unter der URL nicht vo" +
"rhanden\x02Datei konnte nicht heruntergeladen werden\x02SQL Server in ei" +
"nem Container installieren/erstellen\x02Alle Releasetags für SQL Server " +
"anzeigen, vorherige Version installieren\x02SQL Server erstellen, die Ad" +
"ventureWorks-Beispieldatenbank herunterladen und anfügen\x02SQL Server e" +
"rstellen, die AdventureWorks-Beispieldatenbank mit einem anderen Datenba" +
"nknamen herunterladen und anfügen\x02SQL Server mit einer leeren Benutze" +
"rdatenbank erstellen\x02SQL Server mit vollständiger Protokollierung ins" +
"tallieren/erstellen\x02Tags abrufen, die für Azure SQL Edge-Installation" +
" verfügbar sind\x02Tags auflisten\x02Verfügbare Tags für die MSSQL-Insta" +
"llation abrufen\x02sqlcmd-Start\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 Arbeitsspeich" +
"erressourcen sind verfügbar) kann durch zu viele Anmeldeinformationen ve" +
"rursacht werden, die bereits in Windows Anmeldeinformations-Manager gesp" +
"eichert sind\x02Fehler beim Schreiben der Anmeldeinformationen in Window" +
"s Anmeldeinformations-Manager\x02Der -L-Parameter kann nicht in Verbindu" +
"ng mit anderen Parametern verwendet werden.\x02\x22-a %#[1]v\x22: Die Pa" +
"ketgröße muss eine Zahl zwischen 512 und 32767 sein.\x02'-h %#[1]v': Der" +
" Headerwert muss entweder -2147483647 oder ein Wert zwischen -1 und 2147" +
"483647 sein.\x02Server:\x02Rechtliche Dokumente und Informationen: aka.m" +
"s/SqlcmdLegal\x02Hinweise zu Drittanbietern: aka.ms/SqlcmdNotices\x04" +
"\x00\x01\x0a\x0f\x02Version: %[1]v\x02Flags:\x02-? zeigt diese Syntaxzus" +
"ammenfassung an, %[1]s zeigt die Hilfe zu modernen sqlcmd-Unterbefehlen " +
"an\x02Laufzeitverfolgung in die angegebene Datei schreiben. Nur für fort" +
"geschrittenes Debugging.\x02Identifiziert mindestens eine Datei, die Bat" +
"ches von SQL-Anweisungen enthält. Wenn mindestens eine Datei nicht vorha" +
"nden ist, wird sqlcmd beendet. Sich gegenseitig ausschließend mit %[1]s/" +
"%[2]s\x02Identifiziert die Datei, die Ausgaben von sqlcmd empfängt\x02Ve" +
"rsionsinformationen drucken und beenden\x02Serverzertifikat ohne Überprü" +
"fung implizit als vertrauenswürdig einstufen\x02Mit dieser Option wird d" +
"ie sqlcmd-Skriptvariable %[1]s festgelegt. Dieser Parameter gibt die Anf" +
"angsdatenbank an. Der Standardwert ist die Standarddatenbankeigenschaft " +
"Ihrer Anmeldung. Wenn die Datenbank nicht vorhanden ist, wird eine Fehle" +
"rmeldung generiert, und sqlcmd wird beendet.\x02Verwendet eine vertrauen" +
"swürdige Verbindung, anstatt einen Benutzernamen und ein Kennwort für di" +
"e Anmeldung bei SQL Server zu verwenden. Umgebungsvariablen, die Benutze" +
"rnamen und Kennwort definieren, werden ignoriert.\x02Gibt das Batchabsch" +
"lusszeichen an. Der Standardwert ist %[1]s\x02Der Anmeldename oder der e" +
"nthaltene Datenbankbenutzername. Für eigenständige Datenbankbenutzer müs" +
"sen Sie die Option „Datenbankname“ angeben.\x02Führt eine Abfrage aus, w" +
"enn sqlcmd gestartet wird, aber beendet sqlcmd nicht, wenn die Abfrage a" +
"usgeführt wurde. Abfragen mit mehrfachem Semikolontrennzeichen können au" +
"sgeführt werden.\x02Führt eine Abfrage aus, wenn sqlcmd gestartet und da" +
"nn sqlcmd sofort beendet wird. Abfragen mit mehrfachem Semikolontrennzei" +
"chen können ausgeführt werden\x02%[1]s Gibt die Instanz von SQL Server a" +
"n, mit denen eine Verbindung hergestellt werden soll. Sie legt die sqlcm" +
"d-Skriptvariable %[2]s fest.\x02%[1]s Deaktiviert Befehle, die die Syste" +
"msicherheit gefährden könnten. Die Übergabe 1 weist sqlcmd an, beendet z" +
"u werden, wenn deaktivierte Befehle ausgeführt werden.\x02Gibt die SQL-A" +
"uthentifizierungsmethode an, die zum Herstellen einer Verbindung mit der" +
" Azure SQL-Datenbank verwendet werden soll. Eines der folgenden Elemente" +
": %[1]s\x02Weist sqlcmd an, die ActiveDirectory-Authentifizierung zu ver" +
"wenden. Wenn kein Benutzername angegeben wird, wird die Authentifizierun" +
"gsmethode ActiveDirectoryDefault verwendet. Wenn ein Kennwort angegeben " +
"wird, wird ActiveDirectoryPassword verwendet. Andernfalls wird ActiveDir" +
"ectoryInteractive verwendet.\x02Bewirkt, dass sqlcmd Skriptvariablen ign" +
"oriert. Dieser Parameter ist nützlich, wenn ein Skript viele %[1]s-Anwei" +
"sungen enthält, die möglicherweise Zeichenfolgen enthalten, die das glei" +
"che Format wie reguläre Variablen aufweisen, z. B. $(variable_name)\x02E" +
"rstellt eine sqlcmd-Skriptvariable, die in einem sqlcmd-Skript verwendet" +
" werden kann. Schließen Sie den Wert in Anführungszeichen ein, wenn der " +
"Wert Leerzeichen enthält. Sie können mehrere var=values-Werte angeben. W" +
"enn Fehler in einem der angegebenen Werte vorliegen, generiert sqlcmd ei" +
"ne Fehlermeldung und beendet dann\x02Fordert ein Paket einer anderen Grö" +
"ße an. Mit dieser Option wird die sqlcmd-Skriptvariable %[1]s festgeleg" +
"t. packet_size muss ein Wert zwischen 512 und 32767 sein. Der Standardwe" +
"rt = 4096. Eine größere Paketgröße kann die Leistung für die Ausführung " +
"von Skripts mit vielen SQL-Anweisungen zwischen %[2]s-Befehlen verbesser" +
"n. Sie können eine größere Paketgröße anfordern. Wenn die Anforderung ab" +
"gelehnt wird, verwendet sqlcmd jedoch den Serverstandard für die Paketgr" +
"öße.\x02Gibt die Anzahl von Sekunden an, nach der ein Timeout für eine " +
"sqlcmd-Anmeldung beim go-mssqldb-Treiber auftritt, wenn Sie versuchen, e" +
"ine Verbindung mit einem Server herzustellen. Mit dieser Option wird die" +
" sqlcmd-Skriptvariable %[1]s festgelegt. Der Standardwert ist 30. 0 bede" +
"utet unendlich\x02Mit dieser Option wird die sqlcmd-Skriptvariable %[1]s" +
" festgelegt. Der Arbeitsstationsname ist in der Hostnamenspalte der sys." +
"sysprocesses-Katalogsicht aufgeführt und kann mithilfe der gespeicherten" +
" Prozedur sp_who zurückgegeben werden. Wenn diese Option nicht angegeben" +
" ist, wird standardmäßig der aktuelle Computername verwendet. Dieser Nam" +
"e kann zum Identifizieren verschiedener sqlcmd-Sitzungen verwendet werde" +
"n.\x02Deklariert den Anwendungsworkloadtyp beim Herstellen einer Verbind" +
"ung mit einem Server. Der einzige aktuell unterstützte Wert ist ReadOnly" +
". Wenn %[1]s nicht angegeben ist, unterstützt das sqlcam-Hilfsprogramm d" +
"ie Konnektivität mit einem sekundären Replikat in einer Always-On-Verfüg" +
"barkeitsgruppe nicht.\x02Dieser Schalter wird vom Client verwendet, um e" +
"ine verschlüsselte Verbindung anzufordern.\x02Gibt den Hostnamen im Serv" +
"erzertifikat an.\x02Druckt die Ausgabe im vertikalen Format. Mit dieser " +
"Option wird die sqlcmd-Skriptvariable %[1]s auf „%[2]s“ festgelegt. Der " +
"Standardwert lautet FALSCH.\x02%[1]s Leitet Fehlermeldungen mit Schwereg" +
"rad >= 11 Ausgabe an stderr um. Übergeben Sie 1, um alle Fehler einschli" +
"eßlich PRINT umzuleiten.\x02Ebene der zu druckenden MSSQL-Treibermeldung" +
"en\x02Gibt an, dass sqlcmd bei einem Fehler beendet wird und einen %[1]s" +
"-Wert zurückgibt\x02Steuert, welche Fehlermeldungen an %[1]s gesendet we" +
"rden. Nachrichten mit einem Schweregrad größer oder gleich dieser Ebene " +
"werden gesendet.\x02Gibt die Anzahl der Zeilen an, die zwischen den Spal" +
"tenüberschriften gedruckt werden sollen. Verwenden Sie -h-1, um anzugebe" +
"n, dass Header nicht gedruckt werden\x02Gibt an, dass alle Ausgabedateie" +
"n mit Little-Endian-Unicode codiert sind\x02Gibt das Spaltentrennzeichen" +
" an. Legt die %[1]s-Variable fest.\x02Nachfolgende Leerzeichen aus einer" +
" Spalte entfernen\x02Aus Gründen der Abwärtskompatibilität bereitgestell" +
"t. Sqlcmd optimiert immer die Erkennung des aktiven Replikats eines SQL-" +
"Failoverclusters.\x02Kennwort\x02Steuert den Schweregrad, mit dem die Va" +
"riable %[1]s beim Beenden festgelegt wird.\x02Gibt die Bildschirmbreite " +
"für die Ausgabe an\x02%[1]s Server auflisten. Übergeben Sie %[2]s, um di" +
"e Ausgabe \x22Servers:\x22 auszulassen.\x02Dedizierte Adminverbindung" +
"\x02Aus Gründen der Abwärtskompatibilität bereitgestellt. Bezeichner in " +
"Anführungszeichen sind immer aktiviert.\x02Aus Gründen der Abwärtskompat" +
"ibilität bereitgestellt. Regionale Clienteinstellungen werden nicht verw" +
"endet.\x02%[1]s Entfernen Sie Steuerzeichen aus der Ausgabe. Übergeben S" +
"ie 1, um ein Leerzeichen pro Zeichen zu ersetzen, 2 für ein Leerzeichen " +
"pro aufeinanderfolgende Zeichen.\x02Echoeingabe\x02Spaltenverschlüsselun" +
"g aktivieren\x02Neues Kennwort\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 kleiner 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: Unerwartetes Argument. Der Argumentwert muss %[" +
"3]v sein.\x02\x22%[1]s %[2]s\x22: Unerwartetes Argument. Der Argumentwer" +
"t muss einer der %[3]v sein.\x02Die Optionen %[1]s und %[2]s schließen s" +
"ich gegenseitig aus.\x02'%[1]s': Fehlendes Argument. Geben Sie \x22-?" +
"\x22 ein, um die Hilfe anzuzeigen.\x02'%[1]s': Unbekannte Option. Mit " +
"\x22-?\x22 rufen Sie die Hilfe auf.\x02Fehler beim Erstellen der Ablaufv" +
"erfolgungsdatei „%[1]s“: %[2]v\x02Fehler beim Starten der Ablaufverfolgu" +
"ng: %[1]v\x02Ungültiges Batchabschlusszeichen '%[1]s'\x02Neues Kennwort " +
"eingeben:\x02sqlcmd: SQL Server, Azure SQL und Tools installieren/erstel" +
"len/abfragen\x04\x00\x01 \x10\x02Sqlcmd: Fehler:\x04\x00\x01 \x11\x02Sql" +
"cmd: Warnung:\x02Die Befehle \x22ED\x22 und \x22!!<command>\x22, Startsk" +
"ript und Umgebungsvariablen sind deaktiviert\x02Die Skriptvariable: '%[1" +
"]s' ist schreibgeschützt.\x02Die '%[1]s'-Skriptvariable ist nicht defini" +
"ert.\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 Ausfü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, Ebene %[2]d, Status %[3]d, Server %[4]s, Zei" +
"le %#[5]v%[6]s\x02Kennwort:\x02(1 Zeile betroffen)\x02(%[1]d Zeilen betr" +
"offen)\x02Ungültiger Variablenbezeichner %[1]s\x02Ungültiger Variablenwe" +
"rt %[1]s"
var en_USIndex = []uint32{ // 310 elements
// Entry 0 - 1F
0x00000000, 0x0000002c, 0x00000062, 0x0000007a,
0x000000b3, 0x000000cb, 0x000000de, 0x00000113,
0x00000149, 0x00000189, 0x000001b9, 0x000001f0,
0x00000218, 0x00000224, 0x00000247, 0x00000260,
0x00000274, 0x00000284, 0x0000029a, 0x000002b4,
0x000002cf, 0x000002e2, 0x00000303, 0x00000330,
0x0000035a, 0x0000036f, 0x00000388, 0x000003a9,
0x000003df, 0x00000404, 0x00000439, 0x0000049b,
// Entry 20 - 3F
0x000004dc, 0x00000528, 0x00000540, 0x0000054f,
0x00000578, 0x0000058f, 0x000005c8, 0x000005fd,
0x00000614, 0x00000635, 0x00000686, 0x0000069d,
0x000006ac, 0x000006ee, 0x0000070b, 0x00000711,
0x00000737, 0x0000078c, 0x000007d0, 0x000007ea,
0x000007f8, 0x00000853, 0x00000870, 0x00000897,
0x000008ba, 0x000008e1, 0x000008fa, 0x0000091b,
0x0000096f, 0x00000982, 0x0000098f, 0x0000099f,
// Entry 40 - 5F
0x000009bb, 0x000009d5, 0x000009f8, 0x00000a07,
0x00000a1f, 0x00000a36, 0x00000a54, 0x00000a8b,
0x00000aba, 0x00000ada, 0x00000aee, 0x00000b04,
0x00000b1f, 0x00000b34, 0x00000b6d, 0x00000ba9,
0x00000be4, 0x00000c32, 0x00000c3d, 0x00000c72,
0x00000ca9, 0x00000cf0, 0x00000d25, 0x00000d54,
0x00000d7f, 0x00000d95, 0x00000dad, 0x00000df1,
0x00000e04, 0x00000e43, 0x00000e81, 0x00000eb1,
// Entry 60 - 7F
0x00000ed8, 0x00000eee, 0x00000f2c, 0x00000f53,
0x00000f89, 0x00000fc2, 0x00000fd5, 0x00001009,
0x00001038, 0x00001083, 0x000010b9, 0x000010d5,
0x000010e6, 0x00001119, 0x0000114c, 0x00001166,
0x00001195, 0x000011cc, 0x000011e4, 0x00001203,
0x00001216, 0x00001231, 0x00001278, 0x00001287,
0x000012a7, 0x000012c0, 0x000012ce, 0x000012e5,
0x00001324, 0x0000132f, 0x00001349, 0x0000135c,
// Entry 80 - 9F
0x00001391, 0x000013c3, 0x000013f0, 0x0000141c,
0x0000143c, 0x00001454, 0x0000147b, 0x000014ab,
0x000014e1, 0x0000150f, 0x0000153c, 0x0000155d,
0x00001576, 0x0000159e, 0x000015cf, 0x00001601,
0x0000162b, 0x00001654, 0x00001671, 0x00001686,
0x000016aa, 0x000016d7, 0x000016ef, 0x0000172f,
0x00001759, 0x00001772, 0x0000178b, 0x000017a8,
0x000017d1, 0x00001811, 0x0000184c, 0x00001880,
// Entry A0 - BF
0x00001896, 0x000018ad, 0x000018da, 0x00001907,
0x0000194d, 0x00001988, 0x000019a3, 0x000019bd,
0x000019e2, 0x00001a07, 0x00001a2a, 0x00001a57,
0x00001a8b, 0x00001aba, 0x00001b07, 0x00001b4e,
0x00001b73, 0x00001b98, 0x00001bd5, 0x00001c13,
0x00001c42, 0x00001c7d, 0x00001c8f, 0x00001ccc,
0x00001cdb, 0x00001d19, 0x00001d62, 0x00001d7c,
0x00001d93, 0x00001dad, 0x00001dc4, 0x00001dcb,
// Entry C0 - DF
0x00001dfb, 0x00001e1d, 0x00001e47, 0x00001e71,
0x00001e96, 0x00001eb0, 0x00001ed2, 0x00001ee4,
0x00001efd, 0x00001f0f, 0x00001f59, 0x00001f84,
0x00001f8d, 0x00001ff8, 0x00002017, 0x00002032,
0x0000204a, 0x00002073, 0x000020b1, 0x000020f7,
0x0000215a, 0x00002188, 0x000021b4, 0x000021e2,
0x000021ec, 0x00002211, 0x0000221e, 0x00002237,
0x0000225c, 0x000022e3, 0x0000231c, 0x00002363,
// Entry E0 - FF
0x000023a6, 0x000023f6, 0x000023ff, 0x0000242e,
0x00002458, 0x0000246c, 0x00002473, 0x000024bc,
0x00002504, 0x000025a2, 0x000025d7, 0x000025fa,
0x00002635, 0x00002720, 0x000027c4, 0x000027ff,
0x00002878, 0x00002910, 0x0000298c, 0x000029f9,
0x00002a77, 0x00002ad6, 0x00002bc6, 0x00002c9b,
0x00002db8, 0x00002f53, 0x00003031, 0x00003180,
0x0000327a, 0x000032bf, 0x000032f2, 0x0000336e,
// Entry 100 - 11F
0x000033e5, 0x0000340d, 0x00003458, 0x000034d8,
0x0000354b, 0x00003592, 0x000035d5, 0x000035fa,
0x00003671, 0x0000367a, 0x000036c5, 0x000036eb,
0x00003725, 0x00003748, 0x00003793, 0x000037de,
0x00003860, 0x0000386b, 0x00003884, 0x00003891,
0x000038a7, 0x000038d0, 0x0000392f, 0x00003976,
0x000039ba, 0x00003a05, 0x00003a3d, 0x00003a6d,
0x00003a9b, 0x00003ac6, 0x00003ae3, 0x00003b04,
// Entry 120 - 13F
0x00003b18, 0x00003b56, 0x00003b6a, 0x00003b80,
0x00003bd4, 0x00003c01, 0x00003c29, 0x00003c67,
0x00003c98, 0x00003ce7, 0x00003d07, 0x00003d17,
0x00003d6d, 0x00003db2, 0x00003dbc, 0x00003dcd,
0x00003de3, 0x00003e05, 0x00003e22, 0x00003e7c,
0x00003f77, 0x00003f99,
} // Size: 1264 bytes
const en_USData string = "" + // Size: 16281 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\x02configuration file\x02log level, error=0," +
" warn=1, info=2, debug=3, trace=4\x02Modify sqlconfig files using subcom" +
"mands 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 Azure Data Studio) for current context\x02Run a quer" +
"y against the current context\x02Run a query\x02Run a query using [%[1]s" +
"] database\x02Set new default database\x02Command text to run\x02Databas" +
"e to use\x02Start current context\x02Start the current context\x02To vie" +
"w available contexts\x02No current context\x02Starting %[1]q for context" +
" %[2]q\x04\x00\x01 (\x02Create new context with a sql container\x02Curre" +
"nt context does not have a container\x02Stop current context\x02Stop the" +
" current context\x02Stopping %[1]q for context %[2]q\x04\x00\x01 1\x02Cr" +
"eate a new context with a SQL Server container\x02Uninstall/Delete the c" +
"urrent context\x02Uninstall/Delete the current context, no user prompt" +
"\x02Uninstall/Delete the current context, no user prompt and override sa" +
"fety check for user databases\x02Quiet mode (do not stop for user input " +
"to confirm the operation)\x02Complete the operation even if non-system (" +
"user) database files are present\x02View available contexts\x02Create co" +
"ntext\x02Create context with SQL Server container\x02Add a context manua" +
"lly\x02Current context is %[1]q. Do you want to continue? (Y/N)\x02Verif" +
"ying no user (non-system) database (.mdf) files\x02To start the containe" +
"r\x02To override the check, use %[1]s\x02Container is not running, unabl" +
"e 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 da" +
"tabase is mounted, run %[1]s\x02Pass in the flag %[1]s to override this " +
"safety check for user (non-system) databases\x02Unable to continue, a us" +
"er (non-system) database (%[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 endpoint this context will use\x02Name of user this context " +
"will use\x02View existing endpoints to choose from\x02Add a new local en" +
"dpoint\x02Add an already existing endpoint\x02Endpoint required to add c" +
"ontext. Endpoint '%[1]v' does not exist. Use %[2]s flag\x02View list o" +
"f users\x02Add the user\x02Add an endpoint\x02User '%[1]v' does not exis" +
"t\x02Open in Azure Data Studio\x02To start interactive query session\x02" +
"To run a query\x02Current Context '%[1]v'\x02Add a default endpoint\x02D" +
"isplay name for the endpoint\x02The network address to connect to, e.g. " +
"127.0.0.1 etc.\x02The network port to connect to, e.g. 1433 etc.\x02Add " +
"a context for this endpoint\x02View endpoint names\x02View endpoint deta" +
"ils\x02View all endpoints details\x02Delete this endpoint\x02Endpoint '%" +
"[1]v' added (address: '%[2]v', port: '%[3]v')\x02Add a user (using the S" +
"QLCMD_PASSWORD environment variable)\x02Add a user (using the SQLCMDPASS" +
"WORD environment variable)\x02Add a user using Windows Data Protection A" +
"PI to encrypt password in sqlconfig\x02Add a user\x02Display name for th" +
"e user (this is not the username)\x02Authentication type this user will " +
"use (basic | other)\x02The username (provide password in %[1]s or %[2]s " +
"environment variable)\x02Password encryption method (%[1]s) in sqlconfig" +
" file\x02Authentication type must be '%[1]s' or '%[2]s'\x02Authenticatio" +
"n type '' is not valid %[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 the %[1]s flag\x02The %[1]s flag must be set when authen" +
"tication type is '%[2]s'\x02Provide password in the %[1]s (or %[2]s) env" +
"ironment variable\x02Authentication Type '%[1]s' requires a password\x02" +
"Provide a username with the %[1]s flag\x02Username not provided\x02Provi" +
"de a valid encryption method (%[1]s) with the %[2]s flag\x02Encryption m" +
"ethod '%[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.\x02User '%[1]v' added\x02Display connections strings for the cu" +
"rrent context\x02List connection strings for all client drivers\x02Datab" +
"ase for the connection string (default is taken from the T/SQL login)" +
"\x02Connection Strings only supported for %[1]s Auth type\x02Display the" +
" current-context\x02Delete a context\x02Delete a context (including its " +
"endpoint and user)\x02Delete a context (excluding its endpoint and user)" +
"\x02Name of context to delete\x02Delete the context's endpoint and user " +
"as well\x02Use the %[1]s flag to pass in a context name to delete\x02Con" +
"text '%[1]v' deleted\x02Context '%[1]v' does not exist\x02Delete an endp" +
"oint\x02Name of endpoint to delete\x02Endpoint name must be provided. P" +
"rovide endpoint name with %[1]s flag\x02View endpoints\x02Endpoint '%[1]" +
"v' does not exist\x02Endpoint '%[1]v' deleted\x02Delete a user\x02Name o" +
"f user to delete\x02User name must be provided. Provide user name with " +
"%[1]s flag\x02View users\x02User %[1]q does not exist\x02User %[1]q dele" +
"ted\x02Display one or many contexts from the sqlconfig file\x02List all " +
"the context names in your sqlconfig file\x02List all the contexts in you" +
"r sqlconfig file\x02Describe one context in your sqlconfig file\x02Conte" +
"xt name to view details of\x02Include context details\x02To view availab" +
"le contexts run `%[1]s`\x02error: no context exists with the name: \x22%" +
"[1]v\x22\x02Display one or many endpoints from the sqlconfig file\x02Lis" +
"t all the endpoints in your sqlconfig file\x02Describe one endpoint in y" +
"our sqlconfig file\x02Endpoint name to view details of\x02Include endpoi" +
"nt details\x02To view available endpoints run `%[1]s`\x02error: no endpo" +
"int exists with the name: \x22%[1]v\x22\x02Display one or many users fro" +
"m the sqlconfig file\x02List all the users in your sqlconfig file\x02Des" +
"cribe one user in your sqlconfig file\x02User name to view details of" +
"\x02Include user details\x02To view available users run `%[1]s`\x02error" +
": no user exists with the name: \x22%[1]v\x22\x02Set the current context" +
"\x02Set the mssql context (endpoint/user) to be the current context\x02N" +
"ame of context to set as current context\x02To run a query: %[1]s\x02" +
"To remove: %[1]s\x02Switched to context \x22%[1]v\x22.\x02No con" +
"text exists with the name: \x22%[1]v\x22\x02Display merged sqlconfig set" +
"tings or a specified sqlconfig file\x02Show sqlconfig settings, with RED" +
"ACTED authentication data\x02Show sqlconfig settings and raw authenticat" +
"ion data\x02Display raw byte data\x02Install Azure Sql Edge\x02Install/C" +
"reate Azure SQL Edge in a container\x02Tag to use, use get-tags to see l" +
"ist of tags\x02Context name (a default context name will be created if n" +
"ot provided)\x02Create a user database and set it as the default for log" +
"in\x02Accept the SQL Server EULA\x02Generated password length\x02Minimum" +
" number of special characters\x02Minimum number of numeric characters" +
"\x02Minimum number of upper characters\x02Special character set to inclu" +
"de in password\x02Don't download image. Use already downloaded image" +
"\x02Line in errorlog to wait for before connecting\x02Specify a custom n" +
"ame for the container rather than a randomly generated one\x02Explicitly" +
" set the container hostname, it defaults to the container ID\x02Specifie" +
"s the image CPU architecture\x02Specifies the image operating system\x02" +
"Port (next available port from 1433 upwards used by default)\x02Download" +
" (into container) and attach database (.bak) from URL\x02Either, add the" +
" %[1]s flag to the command-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 chars and/or quotes\x02Starting %[1]v\x02Created" +
" context %[1]q in \x22%[2]s\x22, configuring user account...\x02Disabled" +
" %[1]q account (and rotated %[2]q password). Creating user %[3]q\x02Star" +
"t interactive session\x02Change current context\x02View sqlcmd configura" +
"tion\x02See connection strings\x02Remove\x02Now ready for client connect" +
"ions 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 fi" +
"le\x02--using file URL must be a .bak file\x02Invalid --using file type" +
"\x02Creating default database [%[1]s]\x02Downloading %[1]s\x02Restoring " +
"database %[1]s\x02Downloading %[1]v\x02Is a container runtime installed " +
"on this machine (e.g. Podman or Docker)?\x04\x01\x09\x00&\x02If not, dow" +
"nload desktop engine from:\x04\x02\x09\x09\x00\x03\x02or\x02Is a contain" +
"er runtime running? (Try `%[1]s` or `%[2]s` (list containers), does it " +
"return without error?)\x02Unable to download image %[1]s\x02File does no" +
"t exist at URL\x02Unable to download file\x02Install/Create SQL Server i" +
"n a container\x02See all release tags for SQL Server, install previous v" +
"ersion\x02Create SQL Server, download and attach AdventureWorks sample d" +
"atabase\x02Create SQL Server, download and attach AdventureWorks sample " +
"database with different database name\x02Create SQL Server with an empty" +
" user database\x02Install/Create SQL Server with full logging\x02Get tag" +
"s available for Azure SQL Edge install\x02List tags\x02Get tags availabl" +
"e for mssql install\x02sqlcmd start\x02Container is not running\x02Press" +
" Ctrl+C to exit this process...\x02A 'Not enough memory resources are av" +
"ailable' error can be caused by too many credentials already stored in W" +
"indows Credential Manager\x02Failed to write credential to Windows Crede" +
"ntial Manager\x02The -L parameter can not be used in combination with ot" +
"her parameters.\x02'-a %#[1]v': Packet size has to be a number between 5" +
"12 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 sub-command help\x02Write runtime trace to the s" +
"pecified file. Only for advanced debugging.\x02Identifies one or more fi" +
"les that contain batches of SQL statements. If one or more files do not " +
"exist, sqlcmd will exit. Mutually exclusive with %[1]s/%[2]s\x02Identifi" +
"es the file that receives output from sqlcmd\x02Print version informatio" +
"n and exit\x02Implicitly trust the server certificate without validation" +
"\x02This option sets the sqlcmd scripting variable %[1]s. This parameter" +
" specifies the initial database. The default is your login's default-dat" +
"abase property. If the database does not exist, an error message is gene" +
"rated and sqlcmd exits\x02Uses a trusted connection instead of using a u" +
"ser name and password to sign in to SQL Server, ignoring any environment" +
" variables that define user name and password\x02Specifies the batch ter" +
"minator. The default value is %[1]s\x02The login name or contained datab" +
"ase user name. For contained database users, you must provide the datab" +
"ase name option\x02Executes a query when sqlcmd starts, but does not exi" +
"t sqlcmd when the query has finished running. Multiple-semicolon-delimit" +
"ed queries can be executed\x02Executes a query when sqlcmd starts and th" +
"en immediately exits sqlcmd. Multiple-semicolon-delimited queries can be" +
" executed\x02%[1]s Specifies the instance of SQL Server to which to conn" +
"ect. It sets the sqlcmd scripting variable %[2]s.\x02%[1]s Disables comm" +