forked from microsoft/SqlScriptDOM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTSqlParserResource.Designer.cs
More file actions
1341 lines (1191 loc) · 52.9 KB
/
TSqlParserResource.Designer.cs
File metadata and controls
1341 lines (1191 loc) · 52.9 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
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Microsoft.SqlServer.TransactSql.ScriptDom {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class TSqlParserResource {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal TSqlParserResource() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.SqlServer.TransactSql.ScriptDom.TSqlParserResource", typeof(TSqlParserResource).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to An internal parser error occurred..
/// </summary>
internal static string SQL46001Message {
get {
return ResourceManager.GetString("SQL46001Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} data type cannot have both National and Varying keywords..
/// </summary>
internal static string SQL46002Message {
get {
return ResourceManager.GetString("SQL46002Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} data type cannot have the National keyword..
/// </summary>
internal static string SQL46003Message {
get {
return ResourceManager.GetString("SQL46003Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} data type cannot have the Varying keyword..
/// </summary>
internal static string SQL46004Message {
get {
return ResourceManager.GetString("SQL46004Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Expected {0} but encountered {1} instead..
/// </summary>
internal static string SQL46005Message {
get {
return ResourceManager.GetString("SQL46005Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} is not a WITH option for a procedure..
/// </summary>
internal static string SQL46006Message {
get {
return ResourceManager.GetString("SQL46006Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} is not a WITH option for a trigger..
/// </summary>
internal static string SQL46007Message {
get {
return ResourceManager.GetString("SQL46007Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} data type cannot have exactly one parameter..
/// </summary>
internal static string SQL46008Message {
get {
return ResourceManager.GetString("SQL46008Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} data type cannot have two parameters..
/// </summary>
internal static string SQL46009Message {
get {
return ResourceManager.GetString("SQL46009Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Incorrect syntax near {0}..
/// </summary>
internal static string SQL46010Message {
get {
return ResourceManager.GetString("SQL46010Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Only Unique or Primary Key constraints can be created on computed columns, while Check, Foreign Key, and Not Null constraints require that computed columns be persisted..
/// </summary>
internal static string SQL46011Message {
get {
return ResourceManager.GetString("SQL46011Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to More than one Default constraint is defined..
/// </summary>
internal static string SQL46012Message {
get {
return ResourceManager.GetString("SQL46012Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to WITH VALUES can only be defined in an ALTER TABLE statement for a Default constraint..
/// </summary>
internal static string SQL46013Message {
get {
return ResourceManager.GetString("SQL46013Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A Default constraint can exist only at the column level in a CREATE or ALTER TABLE statement..
/// </summary>
internal static string SQL46014Message {
get {
return ResourceManager.GetString("SQL46014Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} is not a valid option for an index that has the backward compatible syntax..
/// </summary>
internal static string SQL46015Message {
get {
return ResourceManager.GetString("SQL46015Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The column name is not valid. No table name was specified..
/// </summary>
internal static string SQL46016Message {
get {
return ResourceManager.GetString("SQL46016Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Count of column names cannot exceed 1024..
/// </summary>
internal static string SQL46017Message {
get {
return ResourceManager.GetString("SQL46017Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} is not a valid option for CREATE STATISTICS..
/// </summary>
internal static string SQL46018Message {
get {
return ResourceManager.GetString("SQL46018Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} is not a valid option for SAMPLE..
/// </summary>
internal static string SQL46019Message {
get {
return ResourceManager.GetString("SQL46019Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} is not a valid option for UPDATE STATISTICS..
/// </summary>
internal static string SQL46020Message {
get {
return ResourceManager.GetString("SQL46020Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} does not allow a database name to be specified..
/// </summary>
internal static string SQL46021Message {
get {
return ResourceManager.GetString("SQL46021Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} is not a recognized table or a view hint..
/// </summary>
internal static string SQL46022Message {
get {
return ResourceManager.GetString("SQL46022Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} is not a recognized GROUP BY option..
/// </summary>
internal static string SQL46023Message {
get {
return ResourceManager.GetString("SQL46023Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} is not a recognized COMPUTE function..
/// </summary>
internal static string SQL46024Message {
get {
return ResourceManager.GetString("SQL46024Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} is not a WITH option for a view..
/// </summary>
internal static string SQL46025Message {
get {
return ResourceManager.GetString("SQL46025Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} is not a WITH option for a CREATE FUNCTION or ALTER FUNCTION statement..
/// </summary>
internal static string SQL46026Message {
get {
return ResourceManager.GetString("SQL46026Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Exactly two part names are required in a DROP INDEX statement..
/// </summary>
internal static string SQL46027Message {
get {
return ResourceManager.GetString("SQL46027Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No more than four parts can be specified for this element name..
/// </summary>
internal static string SQL46028Message {
get {
return ResourceManager.GetString("SQL46028Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unexpected end of file occurred..
/// </summary>
internal static string SQL46029Message {
get {
return ResourceManager.GetString("SQL46029Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Expected but did not find a closing quotation mark after the character string {0}..
/// </summary>
internal static string SQL46030Message {
get {
return ResourceManager.GetString("SQL46030Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Expected but did not find a closing square bracket after the identifier {0}..
/// </summary>
internal static string SQL46031Message {
get {
return ResourceManager.GetString("SQL46031Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Expected but did not find an end comment mark '*/'..
/// </summary>
internal static string SQL46032Message {
get {
return ResourceManager.GetString("SQL46032Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Expected but did not find a closing parenthesis after the identifier {0}..
/// </summary>
internal static string SQL46033Message {
get {
return ResourceManager.GetString("SQL46033Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Only one EXECUTE AS clause is allowed in this statement..
/// </summary>
internal static string SQL46034Message {
get {
return ResourceManager.GetString("SQL46034Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An ODBC join clause must encapsulate a qualified join or another ODBC join clause..
/// </summary>
internal static string SQL46035Message {
get {
return ResourceManager.GetString("SQL46035Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This usage of an ODBC clause is not supported. You must use curly brackets as delimiters..
/// </summary>
internal static string SQL46036Message {
get {
return ResourceManager.GetString("SQL46036Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The script contains syntax that is not supported by the version of SQL Server that is associated with the database project..
/// </summary>
internal static string SQL46037Message {
get {
return ResourceManager.GetString("SQL46037Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to For DROP STATISTICS, you must provide both the object (table or view) name and the statistics name, in the form "objectName.statisticsName"..
/// </summary>
internal static string SQL46038Message {
get {
return ResourceManager.GetString("SQL46038Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You cannot use the OUTPUT option in a CREATE FUNCTION statement..
/// </summary>
internal static string SQL46039Message {
get {
return ResourceManager.GetString("SQL46039Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An action of type 'INSERT' is not allowed in 'WHEN SOURCE NOT MATCHED' or 'MATCHED' clauses of a MERGE statement..
/// </summary>
internal static string SQL46040Message {
get {
return ResourceManager.GetString("SQL46040Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An action of type '{0}' is not allowed in the 'WHEN NOT MATCHED' clause of a MERGE statement..
/// </summary>
internal static string SQL46041Message {
get {
return ResourceManager.GetString("SQL46041Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to More than one column ROWGUIDCOL constraint is specified..
/// </summary>
internal static string SQL46042Message {
get {
return ResourceManager.GetString("SQL46042Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to More than one column IDENTITY constraint is specified..
/// </summary>
internal static string SQL46043Message {
get {
return ResourceManager.GetString("SQL46043Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot have a logon trigger with a scope that is anything other than 'ALL SERVER'..
/// </summary>
internal static string SQL46044Message {
get {
return ResourceManager.GetString("SQL46044Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The integer value {0} is out of range..
/// </summary>
internal static string SQL46045Message {
get {
return ResourceManager.GetString("SQL46045Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The ORDER BY clause is not valid in views, inline functions, derived tables, sub-queries, and common table expressions, unless TOP or FOR XML or OFFSET is also specified..
/// </summary>
internal static string SQL46047Message {
get {
return ResourceManager.GetString("SQL46047Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The TOP N WITH TIES clause is not allowed without a corresponding ORDER BY clause..
/// </summary>
internal static string SQL46048Message {
get {
return ResourceManager.GetString("SQL46048Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Option {0} is specified more than once..
/// </summary>
internal static string SQL46049Message {
get {
return ResourceManager.GetString("SQL46049Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The ALTER DATABASE change tracking option '{0}' was specified more than once. Each option can be specified only once..
/// </summary>
internal static string SQL46050Message {
get {
return ResourceManager.GetString("SQL46050Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to FILESTREAM can only be declared for VARBINARY(MAX) columns..
/// </summary>
internal static string SQL46051Message {
get {
return ResourceManager.GetString("SQL46051Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The following string is not defined as a language alias in syslanguages: {0}.
/// </summary>
internal static string SQL46052Message {
get {
return ResourceManager.GetString("SQL46052Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The specified locale ID is not valid. Verify that the locale ID is correct and that a corresponding language resource has been installed..
/// </summary>
internal static string SQL46053Message {
get {
return ResourceManager.GetString("SQL46053Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The specified maximum size limit is greater than the maximum value allowed. The maximum size limit must be less than 16777215 TB..
/// </summary>
internal static string SQL46054Message {
get {
return ResourceManager.GetString("SQL46054Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Conversion failed when converting from a character string to uniqueidentifier..
/// </summary>
internal static string SQL46055Message {
get {
return ResourceManager.GetString("SQL46055Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The FILEPATH option must be specified for FILE audit target in a CREATE SERVER AUDIT statement..
/// </summary>
internal static string SQL46056Message {
get {
return ResourceManager.GetString("SQL46056Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Option '{0}' is not a valid index option in '{1}' statement..
/// </summary>
internal static string SQL46057Message {
get {
return ResourceManager.GetString("SQL46057Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The same large data placement option '{0}' has been specified twice..
/// </summary>
internal static string SQL46058Message {
get {
return ResourceManager.GetString("SQL46058Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to There is an incorrect expression in the WHERE clause..
/// </summary>
internal static string SQL46059Message {
get {
return ResourceManager.GetString("SQL46059Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Fill factor {0} is not a valid percentage; fill factor must be between 1 and 100..
/// </summary>
internal static string SQL46060Message {
get {
return ResourceManager.GetString("SQL46060Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to In an ALTER TABLE REBUILD or ALTER INDEX REBUILD statement, when a partition is specified in a DATA_COMPRESSION or XML_COMPRESSION clause, same PARTITION must be specified..
/// </summary>
internal static string SQL46061Message {
get {
return ResourceManager.GetString("SQL46061Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The NEWNAME option is allowed only with ALTER DATABASE MODIFY FILE syntax..
/// </summary>
internal static string SQL46062Message {
get {
return ResourceManager.GetString("SQL46062Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An empty string is not allowed here..
/// </summary>
internal static string SQL46063Message {
get {
return ResourceManager.GetString("SQL46063Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The file option FILENAME is required in this CREATE/ALTER DATABASE statement..
/// </summary>
internal static string SQL46065Message {
get {
return ResourceManager.GetString("SQL46065Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to For the {0} option, four parameters must be specified..
/// </summary>
internal static string SQL46066Message {
get {
return ResourceManager.GetString("SQL46066Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Bounding-box coordinates apply only within a USING GEOMETRY_GRID clause..
/// </summary>
internal static string SQL46067Message {
get {
return ResourceManager.GetString("SQL46067Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to All three options (PROCEDURE_NAME, EXECUTE AS, MAX_QUEUE_READERS) must be specified..
/// </summary>
internal static string SQL46069Message {
get {
return ResourceManager.GetString("SQL46069Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The use of the option {0} in the DROP INDEX statement is not valid..
/// </summary>
internal static string SQL46070Message {
get {
return ResourceManager.GetString("SQL46070Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Conflicting CREATE/UPDATE STATISTICS options "SAMPLE" and "FULLSCAN".
/// </summary>
internal static string SQL46071Message {
get {
return ResourceManager.GetString("SQL46071Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The CHANGE_TRACKING_CONTEXT WITH clause cannot be used with a SELECT statement..
/// </summary>
internal static string SQL46072Message {
get {
return ResourceManager.GetString("SQL46072Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The value for the CELLS_PER_OBJECT spatial index option should be between 1 and 8192..
/// </summary>
internal static string SQL46073Message {
get {
return ResourceManager.GetString("SQL46073Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Index hints are only allowed in a FROM or OPTION clause..
/// </summary>
internal static string SQL46074Message {
get {
return ResourceManager.GetString("SQL46074Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A nested INSERT, UPDATE, DELETE, or MERGE statement is not allowed inside another nested INSERT, UPDATE, DELETE, or MERGE statement..
/// </summary>
internal static string SQL46075Message {
get {
return ResourceManager.GetString("SQL46075Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A nested INSERT, UPDATE, DELETE, or MERGE statement is not allowed in a SELECT statement that is not the immediate source of rows for an INSERT statement..
/// </summary>
internal static string SQL46076Message {
get {
return ResourceManager.GetString("SQL46076Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A nested INSERT, UPDATE, DELETE, or MERGE statement is not allowed in the FROM clause of an UPDATE or DELETE statement..
/// </summary>
internal static string SQL46077Message {
get {
return ResourceManager.GetString("SQL46077Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A nested INSERT, UPDATE, DELETE, or MERGE statement is not allowed in the USING clause of a MERGE statement..
/// </summary>
internal static string SQL46078Message {
get {
return ResourceManager.GetString("SQL46078Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A nested INSERT, UPDATE, DELETE, or MERGE statement must have an OUTPUT clause..
/// </summary>
internal static string SQL46079Message {
get {
return ResourceManager.GetString("SQL46079Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The required parameter ROLE was not specified..
/// </summary>
internal static string SQL46080Message {
get {
return ResourceManager.GetString("SQL46080Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The index option {0} in the CREATE SPATIAL INDEX statement must appear before the general index options..
/// </summary>
internal static string SQL46081Message {
get {
return ResourceManager.GetString("SQL46081Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Either a format file or one of the three options (SINGLE_BLOB, SINGLE_CLOB, or SINGLE_NCLOB) must be specified..
/// </summary>
internal static string SQL46082Message {
get {
return ResourceManager.GetString("SQL46082Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The WHERE CURRENT OF clause is not allowed in a nested INSERT, UPDATE, DELETE, or MERGE statement..
/// </summary>
internal static string SQL46083Message {
get {
return ResourceManager.GetString("SQL46083Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The CUBE, ROLLUP, and GROUPING SETS constructs are not allowed in a GROUP BY ALL clause..
/// </summary>
internal static string SQL46084Message {
get {
return ResourceManager.GetString("SQL46084Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The WITH CUBE and WITH ROLLUP options are not permitted with a ROLLUP, CUBE, or GROUPING SETS specification..
/// </summary>
internal static string SQL46085Message {
get {
return ResourceManager.GetString("SQL46085Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to DISTINCT is not allowed for windowed aggregate functions..
/// </summary>
internal static string SQL46086Message {
get {
return ResourceManager.GetString("SQL46086Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The integer value {0} for "LISTENER_PORT" is out of range. The value should be between 1024 and 32767..
/// </summary>
internal static string SQL46087Message {
get {
return ResourceManager.GetString("SQL46087Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot use the OUTPUT option when passing a constant to a stored procedure..
/// </summary>
internal static string SQL46088Message {
get {
return ResourceManager.GetString("SQL46088Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Must pass parameter number {0} and subsequent parameters as '@name = value'. After the form '@name = value' has been used, all subsequent parameters must be passed in the form '@name = value'..
/// </summary>
internal static string SQL46089Message {
get {
return ResourceManager.GetString("SQL46089Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Syntax error: Duplicate specification of the action "{0}" in the trigger declaration.
/// </summary>
internal static string SQL46090Message {
get {
return ResourceManager.GetString("SQL46090Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The value {0} for index option 'maxdop' is out of range. It should be between 0 and 32767..
/// </summary>
internal static string SQL46091Message {
get {
return ResourceManager.GetString("SQL46091Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to "{0}": Temporary views are not allowed..
/// </summary>
internal static string SQL46092Message {
get {
return ResourceManager.GetString("SQL46092Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to "{0}": Temporary functions are not allowed..
/// </summary>
internal static string SQL46093Message {
get {
return ResourceManager.GetString("SQL46093Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Percent values must be between 0 and 100..
/// </summary>
internal static string SQL46094Message {
get {
return ResourceManager.GetString("SQL46094Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The Identifier that starts with '{0}' is too long. Maximum length is 128..
/// </summary>
internal static string SQL46095Message {
get {
return ResourceManager.GetString("SQL46095Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The parameter {0} cannot be provided for users that cannot authenticate in a database..
/// </summary>
internal static string SQL46096Message {
get {
return ResourceManager.GetString("SQL46096Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A {0} statement must be terminated by a semi-colon (;).
/// </summary>
internal static string SQL46097Message {
get {
return ResourceManager.GetString("SQL46097Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Subqueries are not allowed in this context. Only scalar expressions are allowed..
/// </summary>
internal static string SQL46098Message {
get {
return ResourceManager.GetString("SQL46098Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to RANGE in OVER clause is only supported with UNBOUNDED and CURRENT ROW frame delimiters..
/// </summary>
internal static string SQL46099Message {
get {
return ResourceManager.GetString("SQL46099Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to OVER clause has illegal window frame specification..
/// </summary>
internal static string SQL46100Message {
get {
return ResourceManager.GetString("SQL46100Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The time value {0} for MAX_DURATION is out of range. It should be between 0 and 71582..
/// </summary>
internal static string SQL46101Message {
get {
return ResourceManager.GetString("SQL46101Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The time value {0} for MAX_DURATION is not allowed for ABORT_AFTER_WAIT = {1}..
/// </summary>
internal static string SQL46102Message {
get {
return ResourceManager.GetString("SQL46102Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Temporal tables require the lower boundary column name in SYSTEM_TIME PERIOD definition to match the GENERATED ALWAYS AS ROW START column name..
/// </summary>
internal static string SQL46103Message {
get {
return ResourceManager.GetString("SQL46103Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Temporal tables require the upper boundary column name in SYSTEM_TIME PERIOD definition to match the GENERATED ALWAYS AS ROW END column name..
/// </summary>
internal static string SQL46104Message {
get {
return ResourceManager.GetString("SQL46104Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to GENERATED ALWAYS AS ROW START column must be defined for Temporal tables..
/// </summary>
internal static string SQL46105Message {
get {
return ResourceManager.GetString("SQL46105Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to GENERATED ALWAYS AS ROW END column must be defined for Temporal tables..
/// </summary>
internal static string SQL46106Message {
get {
return ResourceManager.GetString("SQL46106Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Filtered indexes are not supported on memory optimized tables..
/// </summary>
internal static string SQL46107Message {
get {
return ResourceManager.GetString("SQL46107Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Nonclustered column store indexes are not supported on memory optimized tables..