forked from kkrypt0nn/wordlists
-
Notifications
You must be signed in to change notification settings - Fork 0
/
common_sql_tables.txt
1706 lines (1706 loc) · 22.4 KB
/
common_sql_tables.txt
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
ACCOUNT
ACL_table
ADMIN
ALL_USERS
ANSWER
ANSWER_GROUP
ANSWER_GROUP_DETAIL
AUTHOR
AccountXML1
Action
Administrator
Agent
Aircraft
Apply
Assigned_To
Association
AuditableEvent
Author
BANNERDATA
BID
BOOK
BOOKAUTHOR
BOOK_AUTHORS
BOOK_COPIES
BOOK_LOANS
BORROWER
BRANCH
BROWSE
BUYER
Book
Booked_On
CATEGORIES
CATEGORY
CE_table
COLLECT_SITE
CONTACT
COURSE
COURSE_SECTION
CPG_bridge
CPG_categories
CPG_config
CPG_filetypes
CPG_usergroups
CPG_users
CUSTOMER
CUSTOMERS
CUST_HIST
Campus
Can_Fly
Category
Channel_Comment
Channel_Data
CheckType
ChemList
Chemicals
City
Class_Def_Table
Class_Display_Sequence
Classification
ClassificationNode
ClassificationScheme
ClientsTable
Coefficients
Collection
Company
Component
ConsultantsTable
Continent
Contributor
Country
Course
CurrentUsers
CustomerCards
Customers
DATA_ORG
DC
DC_Data
DEMO_ASSIGNMENTS
DEMO_PROJECTS
DEPARTMENT
DEPARTMENTS
DEPENDENT
DEPT
DEPT_LOCATIONS
DIM_TYPE
DM
DOCUMENT_FIELDS
DSObject_table
DSProp_table
DUMMY
DWE_Corr_Sets
DWE_Corr_Tokens
DWE_Delay_Timers
DWE_Internal_Task_Attributes
DWE_Internal_WF_Attributes
DWE_Max_Id
DWE_Meta_Data
DWE_Org_Resources
DWE_Organizations
DWE_Predecessors
DWE_Resource_Attributes
DWE_Resource_Roles
DWE_Resources
DWE_Roles
DWE_Subscriptions
DWE_Task_Attributes
DWE_Tasks
DWE_WF_Attributes
DWE_Workflow_Documents
DWE_Workflows
D_Abbreviation
D_Comment
D_Format
D_Format_Data
D_Unit
DatabaseInfo
Decimation
Defect
Departure
Description
Descriptions
Descriptions_Languages
Descriptions_Regions
Descriptions_Scripts
Descriptions_Variants
Desert
Device
Domain
EMP
EMPLOYEE
EMPLOYEES
ENROLLMENT
EPIXEIRISI
ERDESIGNER_VERSION_ID
Economy
Editor
EmailAddress
Employee
Employees
Equipment
EthnicGroup
ExternalIdentifier
ExternalLink
Extlangs
ExtrinsicObject
FORM
FORM_QUESTION
Factory_Master
Factory_Output
FindCriteria
Flight
FoundLists
FoundThumbs
GDirectedRoute
GLI_profiles
GROUP
GRouteDetail
Gallery
GalleryThumb
IDIOTIS
INSTITUTE
INVENTORY
ITEM
InstanceStringTable
Institution
Island
KARTA
Keyword
LIBRARY_BRANCH
LINEITEM
LOCATION
Lake
Language
Languages
LimitTest2
Link_table
Linkdesc_table
MEMBER
MOMENT
MetadataFieldRegistry
MetadataSchemaRegistry
MetadataValue
Model
MonitorStatus
Mountain
MountainOnIsland
Name
NextID_table
ORDERITEMS
ORDERLINES
ORDERS
ORDERSTATUS
Offices
OperationStatus
Orders
Organization
PART
PERMISSION
PERSON
PN
PN_Data
POINT
POINT_SET
POSITION
PREFIX_access
PREFIX_category_group
PREFIX_configuration
PREFIX_customer_group
PREFIX_group
PREFIX_group_lang
PREFIX_order_return_state
PREFIX_order_return_state_lang
PREFIX_product_attribute_image
PREFIX_search_engine
PREFIX_tab
PREFIX_tab_lang
PREFIX_timezone
PRODUCT
PROFILE
PROJECT
PS_DMK
PUBLISHER
PZ
PZ_Data
Parameter
Parts
Path
Person
Pilot
Plane
Poles_Zeros
Politics
Polynomial
Population
PostalAddress
Prefixes
Priority
Product
Products
ProjectsTable
PropColumnMap
Propdesc_table
Property
Province
Publication
Publisher
Purchases
QRTZ_BLOB_TRIGGERS
QRTZ_CALENDARS
QRTZ_CRON_TRIGGERS
QRTZ_FIRED_TRIGGERS
QRTZ_JOB_DETAILS
QRTZ_JOB_LISTENERS
QRTZ_LOCKS
QRTZ_PAUSED_TRIGGER_GRPS
QRTZ_SCHEDULER_STATE
QRTZ_SIMPLE_TRIGGERS
QRTZ_TRIGGERS
QRTZ_TRIGGER_LISTENERS
QUESTION
R1IDF
R1Length
R1Size
R1Sum
R1TF
R1Weights
R2IDF
R2Length
R2ODTMAP
R2Size
R2Sum
R2TF
R2Weights
RATING
RECORD
REORDER
ROLE
ROLE_PERM
Regions
RegistryPackage
Religion
River
Room
S2ODTMAP
SALES
SALGRADE
SCALE
SCRIPT
SELLER
SEQUENCE
SIGNON
SPACE
SPJ
SQLDATES
SUPPLIER
SUPPORT_INCIDENTS
SYNALLAGI
SalesReps
SchemaInfo
Scripts
Sea
Sensitivity
Service
ServiceBinding
Session
Severity
Simple_Response
Slot
SpecialityTable
SpecificationLink
StateType
Station_Comment
Station_Data
Status
StringTable
Student
Students
Subject
TERM
THOT_ALPHA
THOT_CATEGORY
THOT_CONCEPT
THOT_DEEP
THOT_LANGUAGE
THOT_SOURCE
THOT_SUB_MENU
THOT_TARGET
THOT_THEME
THOT_TYPE
THOT_YEAR
TIL_IDIOTON
TIME
Table
Tasks
TelephoneNumber
Thumbnail
ThumbnailKeyword
Time
Transactions
TypeRule
UM_PERMISSIONS
UM_ROLES
UM_ROLE_ATTRIBUTES
UM_ROLE_PERMISSIONS
UM_USERS
UM_USER_ATTRIBUTES
UM_USER_PERMISSIONS
UM_USER_ROLES
USER
USER_GROUP
UsageDescription
UsageParameter
User
UserCapability
UserFields
UserFieldsInfo
UserRole
UserType
User_
Users
Variants
Volume
WORKS_ON
WROTE
WidgetDescriptions
WidgetPrices
WidgetReferences
Widgets
ZENTRACK_VARFIELD
ZENTRACK_VARFIELD_IDX
abstract
acc_trans
accessTable
access_control
account
account_level
account_log
account_permissions
account_temp
account_transaction
accounts
accountuser
action_attribute
action_element
actions
activity
ad_locales
adblocks
address
addresses
admin
admin_logs
admins
ads
adv
agent
agent_specialty
aggtest
alarms
album
alerts
alias
allocation
alltypes
answerOption
ap
apartments
appVersions
app_user
applications
ar
archive
archtypes
area
areas
array_data
array_probe
array_test
article
artifact
artist
ask
assembly
assignment
association
attributeCategory
attrs
audio
audit
audittrail
author
authors
auto_id_tests
backgroundJob_table
badspy
banned_users
basePlusCommissionEmployees
belong
binaries
biosample
bkp_Item
bkp_ItemPresentation
bkp_ItemReference
bkp_ItemReplication
bkp_ItemResource
bkp_RS_Clusters
bkp_RS_Servers
bkp_ResourceFolder
bkp_String
bldg_types
blobs
bombing
book
bookings
books
booleantests
borders
borrower
branch
bugs
builds
business
calendar
cameFromTable
cart
cart_table
catalog
catalogue
categories
categories_posts
category
categoryNames
categorylinks
cc_config
cdv_allele_curated_allele
cdv_curated_allele
cdv_curation
cdv_map_feature
cdv_marker
cdv_passport_group
cdv_passport_set
cdv_reason
cell_line
certificates
changePrix
changeTva
channelitems
channels
chart
checksum_history
checksum_results
child_config_traffic_selector
child_configs
child_test
chip_layout
chromosomes
cia
cities
city
client
clients
clubs
cmAvailableServiceBinding
cmAvailableServiceBindingSiteNodeTypeDefinition
cmContent
cmContentRelation
cmContentTypeDefinition
cmContentVersion
cmContentVersionDigitalAsset
cmDigitalAsset
cmEvent
cmLanguage
cmPublication
cmPublicationDetail
cmQualifyer
cmRepository
cmRepositoryContentTypeDefinition
cmRepositoryLanguage
cmRole
cmServiceBinding
cmServiceDefinition
cmServiceDefinitionAvailableServiceBinding
cmSiteNode
cmSiteNodeTypeDefinition
cmSiteNodeVersion
cmSystemUser
cmSystemUserRole
cmTransactionHistory
cmsusers
cmts
cmts_track
cocktail
cocktail_lokal
cocktail_person
collection_item_count
colnametests
color
colour
columns_priv
comboboxes
combustible
combustiblebois
command
commande
comments
commissionEmployees
community_item_count
companies
company
computers
conducts
conferences
config
config_seq
configlist
configuration
configuratore
connectorassocs
connectorlinks
connectormacassocs
connectorswitches
contact
contacts
continent
control
copyrights
copytest
correo
countries
country
country_diseases
country_partner
coupon
course
course_section
courses
credential
credenziali
credit
creditcards
curso
cust_order
customer
customers
customertax
customurl
cv_countries
cv_country_synonyms
cv_cropping_system
cv_crops
cv_pests_diseases
cv_soil
data
data_set_association
datasets
datasources
db
defaultinsertid
defaults
defertest
delivery
delivery_quality
department
departments
dependent
depositor
dept
dept_location
dept_locations
derived_types
desert
detail_table
devel_logsql
developers
developers_projects
dictionary
distance
div_aa_annotation
div_accession_collecting
div_allele
div_allele_assay
div_annotation_type
div_experiment
div_generation
div_locality
div_obs_unit
div_obs_unit_sample
div_passport
div_poly_type
div_scoring_tech_type
div_statistic_type
div_stock
div_stock_parent
div_synonym
div_taxonomy
div_trait
div_trait_uom
div_treatment
div_treatment_uom
div_unit_of_measure
document
domain
domain_info
dpt_trans
dtb_baseinfo
dtb_bat_order_daily
dtb_bat_order_daily_age
dtb_bat_order_daily_hour
dtb_bat_relate_products
dtb_best_products
dtb_bloc
dtb_blocposition
dtb_campaign
dtb_campaign_detail
dtb_category
dtb_category_count
dtb_category_total_count
dtb_class
dtb_classcategory
dtb_csv
dtb_csv_sql
dtb_customer
dtb_customer_mail_temp
dtb_customer_reading
dtb_deliv
dtb_delivfee
dtb_delivtime
dtb_kiyaku
dtb_mail_history
dtb_mailmaga_template
dtb_mailtemplate
dtb_member
dtb_news
dtb_order
dtb_order_detail
dtb_order_temp
dtb_other_deliv
dtb_pagelayout
dtb_payment
dtb_products
dtb_products_class
dtb_question
dtb_question_result
dtb_recommend_products
dtb_review
dtb_send_customer
dtb_send_history
dtb_table_comment
dtb_templates
dtb_update
dtb_user_regist
duptest
eco_da_biz_ge
economy
edge
egresado
egresadoxidiomaxhabilidad
email
emailinfo
emp
employee
employees
employer
encompasses
endpoints
enrolled
enrollment
enrollments
enrolls
entity
entrants
equipment_type
equipment_type_seq
estudio_academico
event
evento
events
evidence
ew_gruppi
ew_menu
ew_moduli
ew_tabelle
ew_temi
ew_user
ewst_sessioni
exam
exchange
exchangerate
experiencia
experiment
experimental_data_set
expression
externallinks
extremes
ez_webstats_conf
ezcontentobject_trash
ezin_articles
ezin_authors
ezin_roles
ezin_sections
ezin_users
ezsearch_return_count_new
ezsearch_search_phrase_new
f_attributedefinition
f_attributedependencies
f_classtype
f_options
f_sequence
f_spatialcontext
f_spatialcontextgroup
facets
facilities
facture
faculty
federationApplicants
feedback
field
field_options
file_storage
filearchive
files
files_config
film
fk_test_has_fk
fk_test_has_pk
flag
flow
foreigntest
foreigntest2
form_data
form_data_archive
form_definition
form_definition_text
form_definition_version
form_definition_version_text
form_error
forum
forum_cat
forum_flag
forum_post
forum_report
forum_topic
forum_user
forum_user_activity
forum_user_stat
forum_vote
fournisseur
fournisseurType
fragment
framework_email
friend
friend2
friend_statuses
friends
fruit
func
functions
funny_jokes
furniture
games
ganatlebe_ge
gearing
general_log
genres
genres_in_movies
geo_Desert
geo_Estuary
geo_Island
geo_Lake
geo_Mountain
geo_River
geo_Sea
geo_Source
geo_desert
geo_island
geo_lake
geo_mountain
geo_river
geo_sea
gifi
gl
glas
globals
grandchild_test
grants
graphs
graphs_items
group
groups
grp
guava_group_assignments
guava_groups
guava_packages
guava_preferences
guava_role_assignments
guava_roles
guava_roleviews
guava_sysmodules
guava_theme_modules
guava_themes
guava_users
guava_views
habilidad
hardware
hashes
help_category
help_keyword
help_relation
help_topic
hero
hibernate_unique_key
history
history_str
hitcounter
honorsinfo
host
hostbenchmarks
hosts
hot_prop
hourlyEmployees
humanitaruli_ge
identification
identities
idioma
idiomaxegresado
ike_configs
image
imageAttribute
imageCategoryList
imageInfo
imagelinks
images
individual
ingredients
insertids
institution
insurance
intGroups
intUseringroup
intUsers
interactions
internetaddress
interwiki
inv_lines_seq
inventory
investigator
invite
invoice
invoices
invoices_seq
ipassocs
ipblocks
iplinks
ipmacassocs
ippaths
isDeleted_table
isMember
island
islandIn
item
item_master_seq
items
items_template
iuridiuli_ge
jforum_attach
jforum_categories
jforum_config
jforum_extension_groups
jforum_extensions
jforum_forums
jforum_groups
jforum_posts
jforum_privmsgs
jforum_quota_limit
jforum_ranks
jforum_roles
jforum_smilies
jforum_topics
jforum_users
jforum_vote_desc
jiveExtComponentConf
jiveGroup
jiveGroupProp
jiveGroupUser
jiveID
jiveOffline
jivePrivacyList
jivePrivate
jiveProperty
jiveRemoteServerConf
jiveRoster
jiveRosterGroups
jiveSASLAuthorized
jiveUser
jiveUserProp
jiveVCard
jiveVersion
job
job_history
job_title
jobs
jos_banner
jos_bannerclient
jos_bannertrack
jos_categories
jos_components
jos_contact_details
jos_content
jos_content_frontpage
jos_content_rating
jos_core_acl_aro
jos_core_acl_aro_groups
jos_core_acl_aro_map
jos_core_acl_aro_sections
jos_core_acl_groups_aro_map
jos_core_log_items
jos_core_log_searches
jos_groups
jos_menu
jos_menu_types
jos_messages
jos_messages_cfg
jos_migration_backlinks
jos_modules
jos_modules_menu
jos_newsfeeds
jos_plugins
jos_poll_data
jos_poll_date
jos_poll_menu
jos_polls
jos_sections
jos_session
jos_stats_agents
jos_templates_menu
jos_users
jos_vm_auth_group
jos_vm_auth_user_group
jos_vm_auth_user_vendor
jos_vm_cart
jos_vm_category
jos_vm_category_xref
jos_vm_country
jos_vm_coupons
jos_vm_creditcard
jos_vm_csv
jos_vm_currency
jos_vm_export
jos_vm_function
jos_vm_manufacturer
jos_vm_manufacturer_category
jos_vm_module
jos_vm_order_history
jos_vm_order_item
jos_vm_order_payment
jos_vm_order_status
jos_vm_order_user_info
jos_vm_orders
jos_vm_payment_method
jos_vm_product