-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1117 lines (1085 loc) · 76.3 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-MH978LC');</script>
<!-- End Google Tag Manager -->
<meta charset="utf-8">
<link href="https://www.teradata.com/favicon.ico" type="image/x-icon" rel="shortcut icon" />
<meta name="viewport" content="width=device-width,initial-scale=1">
<!-- Primary Meta Tags -->
<title>Teradata Developer Portal | Teradata for Developers</title>
<meta name="title" content="Teradata Developer Portal | Teradata for Developers">
<meta name="description" content="Build innovative solutions with the most powerful analytical platform on the planet. Get Started with Vantage, Browse technical Docs and Download useful assets.">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://www.developers.teradata.com">
<meta property="og:title" content="Teradata Developer Portal | Teradata for Developers">
<meta property="og:description" content="Build innovative solutions with the most powerful analytical platform on the planet. Get Started with Vantage, Browse technical Docs and Download useful assets.">
<meta property="og:image" content="https://developers.teradata.com/assets/images/developer-portal-preview.png" />
<meta property="og:image:width" content="640" />
<meta property="og:image:height" content="336" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://www.developers.teradata.com">
<meta property="twitter:title" content="Teradata Developer Portal | Teradata for Developers">
<meta property="twitter:description" content="Build innovative solutions with the most powerful analytical platform on the planet. Get Started with Vantage, Browse technical Docs and Download useful assets.">
<meta property="twitter:image" content="https://developers.teradata.com/assets/images/developer-portal-preview.png" />
<meta name="twitter:site" content="@teradata" />
<meta name="keywords" content="Teradata developer, developer community, developer documentation, developer forum, vantage drivers, apis, application platform, analytical functions">
<link rel="alternate" type="application/rss+xml" title="RSS feed for Teradata Press Releases" href="https://www.teradata.com/rss/News" />
<link rel="alternate" type="application/rss+xml" title="RSS feed for Teradata Blogs" href="https://www.teradata.com/rss/Blogs" />
<link rel="stylesheet" href="assets/css/site.css">
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="assets/css/navbar2.css">
<link rel="stylesheet" href="assets/css/developers2.css">
<link rel="stylesheet" href="https://www.teradata.com/Content/Styles/Webfonts/load.css?token=1.2030.0.2029">
<script src="https://www.teradata.com/js/Celebrus/bsci.js" defer></script>
<script>
function myFunction() {
var x = document.getElementById("mySearch").value;
if(x!==''){
var url ="https://search.teradata.com/csm?id=search#q="+x;
searchTextBox.setAttribute("action", url);
searchTextBox.submit()
}
}
</script>
<!--BEGIN QUALTRICS WEBSITE FEEDBACK SNIPPET-->
<script type="text/javascript">
(function(){var g=function(e,h,f,g){
this.get=function(a){for(var a=a+"=",c=document.cookie.split(";"),b=0,e=c.length;b<e;b++){for(var d=c[b];" "==d.charAt(0);)d=d.substring(1,d.length);if(0==d.indexOf(a))return d.substring(a.length,d.length)}return null};
this.set=function(a,c){var b="",b=new Date;b.setTime(b.getTime()+6048E5);b="; expires="+b.toGMTString();document.cookie=a+"="+c+b+"; path=/; "};
this.check=function(){var a=this.get(f);if(a)a=a.split(":");else if(100!=e)"v"==h&&(e=Math.random()>=e/100?0:100),a=[h,e,0],this.set(f,a.join(":"));else return!0;var c=a[1];if(100==c)return!0;switch(a[0]){case "v":return!1;case "r":return c=a[2]%Math.floor(100/c),a[2]++,this.set(f,a.join(":")),!c}return!0};
this.go=function(){if(this.check()){var a=document.createElement("script");a.type="text/javascript";a.src=g;document.body&&document.body.appendChild(a)}};
this.start=function(){var t=this;"complete"!==document.readyState?window.addEventListener?window.addEventListener("load",function(){t.go()},!1):window.attachEvent&&window.attachEvent("onload",function(){t.go()}):t.go()};};
try{(new g(100,"r","QSI_S_ZN_8octL9QmYH5wQ9o","https://zn8octl9qmyh5wq9o-teradata.siteintercept.qualtrics.com/SIE/?Q_ZID=ZN_8octL9QmYH5wQ9o")).start()}catch(i){}})();
</script>
<div id="ZN_8octL9QmYH5wQ9o"><!--DO NOT REMOVE-CONTENTS PLACED HERE--></div>
<!--END WEBSITE FEEDBACK SNIPPET-->
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MH978LC" height="0" width="0" style="display:none;visibility:hidden"></iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->
<div>
<nav>
<div class="header-nav-wrapper">
<section class="header-utility nav-3 background-grayLight color-navy d-none d-xl-flex">
<div class="container-wide d-flex align-items-center">
<div class="header-utility__right d-flex">
<ul class="header-utility__nav me-4">
<li>
<a href="https://teradata.com" target="_blank" class="tcom">Teradata.com</a>
</li>
</ul>
</div>
</div>
</section>
<section id="site-header">
<header class="header-nav">
<div class="container-wide">
<div class="row">
<nav class="col d-flex justify-content-between align-items-center">
<div class="header-nav__element d-flex">
<a class="header-nav__logo" href="https://www.teradata.com/" target="_blank">
<div class="logo">
<div>
<img class="teradata-logo" src='assets/images/TD-Logo.svg' alt="" title="" >
</div>
</div>
</a>
<a href="https://developers.teradata.com" class="dev" >
<div>Developers</div>
</a>
<div>
<ul class="header-nav__main-menu header-nav__element nav-1">
<li>
<a href="https://quickstarts.teradata.com/" class="header-nav__main-menu__link">Getting started</a>
</li>
<li>
<button href="" onclick="docs()" class="header-nav__main-menu__link dropbtn">Docs</button>
<div id="myDocsDropdown" class="dropdown-content">
<a href="https://docs.teradata.com/p/VantageCloud/Lake" class="dropdown-item mt">VantageCloud Lake Documentation</a>
<a href="https://docs.teradata.com/" class="dropdown-item">All Documentation</a>
</div>
</li>
<li>
<a href="https://downloads.teradata.com/" class="header-nav__main-menu__link">Downloads</a>
</li>
<li>
<button href="" onclick="community()" class="header-nav__main-menu__link dropbtn">Community</button>
<div id="myCommunityDropdown" class="dropdown-content dc2">
<a href="https://support.teradata.com" title="Technical Medium Blogs" class="dropdown-item mt">Teradata Community</a>
<a href="https://medium.com/teradata" title="Technical Medium Blogs" target="_blank" class="dropdown-item mb">Technical Medium Blogs
<img src='assets/images/small-external.svg'>
</a>
<a href="https://github.com/Teradata" title="Teradata on GitHub" target="_blank" class="dropdown-item mb">GitHub
<img src='assets/images/small-external.svg'>
</a>
<a href="https://stackoverflow.com/questions/tagged/teradata" title="Stack Overflow Teradata questions" target="_blank" class="dropdown-item">Stack Overflow
<img src='assets/images/small-external.svg'>
</a>
</div>
</li>
</ul>
</nav>
</div>
</div>
</header>
<header class="header-nav-mobile">
<nav class="d-flex custom-justify-content-between align-items-center px-6 shadow--s">
<a class="header-nav__logo d-flex align-items-center" href="/">
<div>
<img class="teradata-logo" src='assets/images/TD-Logo.svg' alt="Teradata Logo" title="Teradata Logo" >
</div>
</a>
<a href="http://developers.teradata.com/" class="developers">Developers</a>
<ul class="header-nav-mobile__top-links">
<li>
<button id="showMenu" role="button" aria-label="Click or Press enter to open menu" tabindex="0" class="header-nav-mobile__menu-icon">
<span></span>
<span></span>
<span></span>
<span></span>
</button>
</li>
</ul>
</nav>
<section id="vue-mobile-slide">
<div class="header-nav-mobile__menu-search" style="display: none;">
<div class="header-nav-mobile__menu-search__input">
<input type="text" id="search-mobile-input" placeholder="What can we help you find?" enterkeyhint="search">
<button class="d-flex align-items-center justify-content-center" data-celebrus="Header - Search Mobile (Display Only)" data-gtm-action="search click">
<span class="material-symbols-outlined md-24">search</span>
</button>
</div>
</div>
<!--Start Responsive NavBar-->
<section class="header-nav-mobile__menu-listing display-menu sidenav">
<ul class="container-wide header-nav-mobile__menu-listing-ul">
<li class="header-nav-mobile__menu-listing__item has-sub-items">
<header data-celebrus="Mobile Main Menu - Who we help" data-gtm-category="Header" data-gtm-action="main nav click" data-gtm-label="Who we help" class="d-flex justify-content-between align-items-center border-bottom-light">
<div class="header-nav-mobile__menu-listing__header nav-1">
<a class="nav-1 d-flex justify-content-between align-items-center" href="https://quickstarts.teradata.com/">Getting started</a>
</div>
</header>
</li>
<li class="border-bottom-light">
<div>
<button id="toggleButtonDocs" class="py-4 nav-1 d-flex justify-content-between align-items-center w-100">Docs
<span class="caret caret--slate"></span>
</button>
<div class="slide-up-down__container hidden" style="--content-height: 94; transition: height 500ms ease-in-out 0s;">
<ul class="ps-3">
<li>
<a class="nav-2 py-4 d-block color-slate" href="https://docs.teradata.com/p/VantageCloud/Lake">VantageCloud Lake Documentation</a>
</li>
<li>
<a class="nav-2 py-4 d-block color-slate" href="https://docs.teradata.com/">All Documentation</a>
</li>
</ul>
</div>
</div>
</li>
<li class="header-nav-mobile__menu-listing__item has-sub-items">
<header class="d-flex justify-content-between align-items-center border-bottom-light">
<div class="header-nav-mobile__menu-listing__header nav-1">
<a class="nav-1 d-flex justify-content-between align-items-center" href="https://downloads.teradata.com/">Downloads</a>
</div>
</header>
</li>
<li class="border-bottom-light">
<div>
<button id="toggleButtonComm" class="py-4 nav-1 d-flex justify-content-between align-items-center w-100">Community
<span class="caret caret--slate"></span>
</button>
<div class="slide-up-down__container hidden" aria-hidden="false" style="--content-height: 235; transition: height 500ms ease-in-out 0s;">
<ul class="ps-3">
<li>
<a class="nav-2 py-4 d-block color-slate" href="https://support.teradata.com">Teradata Community</a>
</li>
<li>
<a class="nav-2 py-4 d-flex align-items-center color-slate" href="https://medium.com/teradata">
Technical Medium Blogs <img src='assets/images/small-external.svg' class="mtop">
</a>
</li>
<li>
<a class="nav-2 py-4 d-flex color-slate" href="https://github.com/Teradata" target="_blank" rel="noopener">
GitHub <img src='assets/images/small-external.svg' class="e">
</a>
</li>
<li>
<a class="nav-2 py-4 d-flex color-slate" href="https://stackoverflow.com/questions/tagged/teradata" target="_blank" rel="noopener">
Stack Overflow <img src='assets/images/external-symbol.svg' class="">
</a>
</li>
</ul>
</div>
</div>
</li>
</ul>
<footer>
<div class="header-nav-mobile__sub-menu background-grayLight mt-6 py-6 container-wide">
<ul class="row">
<li class="col-6">
<a class="nav-1" href="https://teradata.com" target="_blank" rel="noopener">Teradata.com</a>
</li>
</ul>
</div>
</footer>
</section>
</section>
</header>
<div class="page-blackout"></div>
</section>
</div>
</nav>
</div>
<!--Open Banner-->
<section class="td-slide-banner">
<div class="slideshow-container">
<div class="mySlides fade" style="display: none;">
<div class="slideimage1">
<img src="assets/images/icons/vantage.svg" class="img-w" alt="Vantage image" title="Vantage">
</div>
<div class="slidetext1">
<p>Unlock Data. Activate Analytics. Accelerate Value.</p>
<p class="p-slidetext1">Unlock Data.</p>
<p class="p-slidetext1">Activate Analytics.</p>
<p class="p-slidetext1">Accelerate Value.</p>
<p class="p2-slidetext1">The complete cloud analytics and data platform, now with next-generation, cloud-native deployment and expanded analytics capabilities.</p>
<a href="https://www.teradata.com/Vantage" class="NoDec" target="_blank">
<button class="slide-button" >learn more</button>
</a>
</div>
</div>
</div>
</section>
<!--Close Banner-->
</section>
<div class="container-fluid">
<!--Open Jumpin-->
<section>
<div class="jumpin">
<p class="jumpin-text">Jump in</p>
</div>
<div class="row-cards tile-section-container ">
<div class="list-item bcolor-getting-started">
<div class="card-header">
<p class="card-header-text">Getting Started</p>
</div>
<div class="card-header-icon">
<img src="assets/images/icons/play_circle.svg" alt="Play circle" title="Getting Started">
</div>
<div class="card-body">
<p class="card-font">Get quickly up to speed with Teradata Vantage. Learn about features. Find how-tos for common tasks. Explore sample source code.</p>
<div class="card-foot">
<a href="https://quickstarts.teradata.com/" target="_blank" class="link">
<div class="card-foot-1">view getting started</div>
<div class="card-foot-2">
<img src="assets/images/icons/arrow.svg" alt="arrow" title="view getting started">
</div>
</a>
</div>
</div>
</div>
<div class="list-item bcolor-documentation">
<div class="card-header">
<p class="card-header-text">Documentation</p>
</div>
<div class="card-header-icon">
<img src="assets/images/icons/file_search.svg" alt="Search icon" title="Documentation">
</div>
<div class="card-body">
<p class="card-font">Access Vantage Documentation for VantageCloud Enterprise, VantageCore VMware and VantageCore IntelliFlex.</p>
<div class="card-foot-0">
<a href="https://docs.teradata.com/p/VantageCloud/Lake" target="_blank" class="link">
<div class="card-foot-1">view lake docs</div>
<div class="card-foot-2">
<img src="assets/images/icons/arrow.svg" alt="arrow" title="view lake docs">
</div>
</a>
</div>
<div class="card-foot-3">
<a href="https://docs.teradata.com/" target="_blank" class="link">
<div class="card-foot-1">view all teradata docs</div>
<div class="card-foot-2">
<img src="assets/images/icons/arrow.svg" alt="arrow" title="view all teradata docs">
</div>
</a>
</div>
</div>
</div>
<div class="list-item bcolor-downloads">
<div class="card-header">
<p class="card-header-text">Downloads</p>
</div>
<div class="card-header-icon">
<img src="assets/images/icons/download.svg" alt="Downloads" title="downloads">
</div>
<div class="card-body">
<p class="card-font">Find publicly available downloads from Teradata. Browse by category or select one of the popular downloads below.</p>
<div class="card-foot-4">
<a href="https://downloads.teradata.com" target="_blank" class="link">
<div class="card-foot-1">view downloads</div>
<div class="card-foot-2">
<img src="assets/images/icons/arrow.svg" alt="arrow" title="view downloads">
</div>
</a>
</div>
</div>
</div>
<div class="list-item bcolor-community">
<div class="card-header">
<p class="card-header-text">Community</p>
</div>
<div class="card-header-icon">
<img src="assets/images/icons/people.svg" alt="Community" title="Community">
</div>
<div class="card-body">
<p class="card-font">Recent Community Blogs. The best minds from Teradata, our partners, and customers blog about relevant topics and features.</p>
<div class="card-foot-4">
<a href="https://support.teradata.com/community" target="_blank" class="link">
<div class="card-foot-1">view community</div>
<div class="card-foot-2">
<img src="assets/images/icons/arrow.svg" alt="arrow" title="view community">
</div>
</a>
</div>
</div>
</div>
</div>
</section>
<!--Close Jumpin-->
</div>
<br>
<!--VantageCloud Lake Documentation Banner-->
<section class="lake-documentation">
<div class="inside-lake-documentation">
<div class="cloud-icon">
<img src="assets/images/icons/cloud.svg" alt="Cloud" title="Vantage Cloud">
</div>
<div class="lake-documentation-text">
<p class="text1">VantageCloud Lake Documentation</p>
<p class="text2">The complete cloud analytics and data platform, now with next-generation, cloud-native deployment and expanded analytics capabilities.</p>
</div>
<div class="lake-doc-button">
<a href="https://docs.teradata.com/p/VantageCloud/Lake" target="_blank" class="">
<img src="assets/images/icons/lake-doc.svg" alt="documentation" title="Vantage Cloud">
</a>
</div>
</div>
</section>
<!--VantageCloud Lake Documentation Banner-->
<div class="container-fluid">
<section class="td-right-tools-sect">
<div class="td-right-tools-text">
<p class="td-right-tools-desc">The right tools for the job</p>
</div>
<div class="items-list">
<div class="list-item-1">
<div class="tools-icon tools">
<img src="assets/images/icons/tools.svg" alt="wrench" title="Tools">
</div>
<div class="item-name desc">
<p>Tools</p>
<p>An extensive set Developers Tools for managing your development and integration with Vantage, such as IDEs, utilities and much more.</p>
</div>
<div class="bottom-anchor-link">
<a href="https://downloads.teradata.com/download/tools" title="view" rel="nofollow" target="_blank">view</a>
</div>
</div>
<div class="list-item-1">
<div class="tools-icon drivers">
<img src="assets/images/icons/drivers.svg" alt="drivers" title="Drivers & Connectors">
</div>
<div class="item-name desc">
<p>Drivers & Connectors</p>
<p>Connect your application to Vantage using any of the many popular programming development technologies such as Java, .Net, Python, Go.</p>
</div>
<div class="bottom-anchor-link">
<a href="https://downloads.teradata.com/download/connectivity" title="view" rel="nofollow" target="_blank">view</a>
</div>
</div>
<div class="list-item-1">
<div class="tools-icon libraries">
<img src="assets/images/icons/libraries.svg" alt="libraries-icon" title="Libraries">
</div>
<div class="item-name desc">
<p>Libraries</p>
<p>Libraries and packages for your favorite opensource technologies such as Python and R, that take advantage of the Big Data and Machine Learning analytics capabilities of Teradata Vantage.</p>
</div>
<div class="bottom-anchor-link">
<a href="https://downloads.teradata.com/search/content?keys=libraries" title="view" rel="nofollow" target="_blank">view</a>
</div>
</div>
</div>
</section>
</div>
<!---->
<div class="container-fluid">
<div class="dropdown-container">
<p class="jumpin-text">Get started with Teradata</p>
<select id="dropdown" class="dropdown-select" onchange="showResult(this.value)">
<option value="it" selected>IT Operations</option>
<option value="ds">Data Scientist</option>
<option value="de">Data Engineer</option>
<option value="developer">Developer</option>
<option value="da">Database Administrator</option>
</select>
<div class="result-container">
<div id="result">
<div class="">
<p class="started-text">Query data stored in object storage</p>
<p>Native Object Storage (NOS) is a Vantage feature that allows you to query data stored in files in object storage such as AWS S3, Google GCS, Azure Blob or on-prem implementations. It’s useful in scenarios where you want to explore data without building a data pipeline to bring it into Vantage.</p>
</div>
<div class="gs-button">
<a href="https://quickstarts.teradata.com/nos.html" class="NoDec" target="_blank">
<button class="bt">Get started</button>
</a>
</div>
</div>
</div>
</div>
</div>
<!--New section-->
<div class="container-fluid" id="getstartedwithTeradata1">
<section class="getting-started-with-td">
<p class="getting-started-text">Get started with Teradata</p>
<div class="tab">
<a class="tablinks" onclick="openLink(event, 'data-scientist')" id="defaultOpen"><svg width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path id="tablinks" fill-rule="evenodd" clip-rule="evenodd" d="M17 9V11H16L16.0001 12.6382L20.7681 18.3602C21.0171 18.6582 21.0701 19.0732 20.9061 19.4242C20.7595 19.7362 20.4642 19.9486 20.128 19.992L20.0001 20.0002H10.0001C9.61212 20.0002 9.25912 19.7752 9.09412 19.4242C8.94835 19.1122 8.97403 18.7496 9.15641 18.4636L9.23212 18.3602L14.0001 12.6382L14 11H13V9H17ZM16 0C17.1 0 18 0.9 18 2V6.999H16V4H10V8H11V10H10V14H10.259L8.594 16H2C0.9 16 0 15.1 0 14V2C0 0.9 0.9 0 2 0H16ZM8 10H2V14H8V10ZM8 4H2V8H8V4Z" fill="black" fill-opacity="0.6"/>
</svg>Data Scientist
</a>
<a class="tablinks" onclick="openLink(event, 'data-engineer')"><svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path id="tablinks" fill-rule="evenodd" clip-rule="evenodd" d="M7 17V20H5V17H7ZM11 17V20H9V17H11ZM15 17V20H13V17H15ZM14 4C15.104 4 16 4.896 16 6V14C16 15.104 15.104 16 14 16H6C4.896 16 4 15.104 4 14V6C4 4.896 4.896 4 6 4H14ZM20 13V15H17V13H20ZM3 13V15H0V13H3ZM13 11H9V13H13V11ZM20 9V11H17V9H20ZM3 9V11H0V9H3ZM20 5V7H17V5H20ZM3 5V7H0V5H3ZM7 0V3H5V0H7ZM11 0V3H9V0H11ZM15 0V3H13V0H15Z" fill="black" fill-opacity="0.6"/>
</svg>Data Engineer
</a>
<a class="tablinks" onclick="openLink(event, 'developer')"><svg width="20" height="18" viewBox="0 0 20 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path id="tablinks" fill-rule="evenodd" clip-rule="evenodd" d="M20 4V6H18V8H20V10H18V12H20V14H18V16C18 17.1 17.1 18 16 18H2C0.900024 18 0 17.1 0 16V2C0 0.900024 0.900024 0 2 0H16C17.1 0 18 0.900024 18 2V4H20ZM2 16H16V2H2V16ZM4 10H9V14H4V10ZM14 4H10V7H14V4ZM4 4H9V9H4V4ZM14 8H10V14H14V8Z" fill="black" fill-opacity="0.6"/>
</svg>Developer
</a>
<a class="tablinks" onclick="openLink(event, 'database-administrator')"><svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path id="tablinks" fill-rule="evenodd" clip-rule="evenodd" d="M16.07 12.88L18.12 14.93L12.06 21H10V18.94L16.07 12.88ZM0 12.2227C0 14.6777 4.027 16.6667 9 16.6667C9.11295 16.6667 9.22542 16.6657 9.33736 16.6636L6.21719 19.7834C2.70776 19.221 0.145634 17.6233 0.00600147 15.7196L0 15.5557V12.2227ZM0 6.6667C0 9.1217 4.027 11.1117 9 11.1117C12.4853 11.1117 15.5059 10.1343 17.0013 8.70434L17 8.9987L11.7708 14.2302C10.9897 14.3549 10.1617 14.4282 9.30326 14.4422L9 14.4447C4.12849 14.4447 0.164761 12.5351 0.00500536 10.1494L0 9.9997V6.6667ZM18.42 11.3L19.7 12.58C19.92 12.79 19.92 13.14 19.7 13.35L18.7 14.35L16.65 12.3L17.65 11.3C17.86 11.08 18.21 11.08 18.42 11.3ZM9 -0.000301361C13.973 -0.000301361 18 1.9887 18 4.4447C18 6.8997 13.973 8.8887 9 8.8887C4.027 8.8887 0 6.8997 0 4.4447C0 1.9887 4.027 -0.000301361 9 -0.000301361Z" fill="black" fill-opacity="0.6"/>
</svg>Database Administrator
</a>
<a class="tablinks" onclick="openLink(event, 'it-operations')"><svg width="20" height="18" viewBox="0 0 20 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path id="tablinks" fill-rule="evenodd" clip-rule="evenodd" d="M10 4H20V18H0V0H10V4ZM2 16H4V14H2V16ZM4 12H2V10H4V12ZM2 8H4V6H2V8ZM4 4H2V2H4V4ZM6 16H8V14H6V16ZM8 12H6V10H8V12ZM6 8H8V6H6V8ZM8 4H6V2H8V4ZM18 16V6H10V8H12V10H10V12H12V14H10V16H18ZM16 8H14V10H16V8ZM14 12H16V14H14V12Z" fill="black" fill-opacity="0.6"/>
</svg>IT Operations</a>
</div>
<div id="it-operations" class="tabcontent">
<div class="it-operations-background">
<img src="assets/images/icons/it_right.svg" alt="Teradata" title="It Operations">
</div>
<div class="it-operations-text text-container">
<p>Query data stored in object storage</p>
<p>Native Object Storage (NOS) is a Vantage feature that allows you to query data stored in files in object storage such as AWS S3, Google GCS, Azure Blob or on-prem implementations. It’s useful in scenarios where you want to explore data without building a data pipeline to bring it into Vantage.</p>
</div>
<div class="getting-started-button">
<a href="https://quickstarts.teradata.com/nos.html" class="NoDec" target="_blank">
<button class="it-button">Get started</button>
</a>
</div>
</div>
<div id="database-administrator" class="tabcontent">
<div class="database-admin-background">
<img src="assets/images/icons/database_right.svg" alt="Database" title="Database Administrator">
</div>
<div class="database-admin-text text-container">
<p>Run large bulkloads efficiently with Teradata Parallel Transporter (TPT)</p>
<p>We often have a need to move large volumes of data into Vantage. Teradata offers Teradata Parallel Transporter (TPT) utility that can efficiently load large amounts of data into Teradata Vantage. This how-to demonstrates how to use TPT. In this scenario, we will load over 300k records, over 40MB of data, in a couple of seconds.</p>
</div>
<div class="getting-started-button">
<a href="https://quickstarts.teradata.com/tools-and-utilities/run-bulkloads-efficiently-with-teradata-parallel-transporter.html" class="NoDec" target="_blank">
<button class="database-admin-button">Get started</button>
</a>
</div>
</div>
<div id="data-engineer" class="tabcontent">
<div class="data-engineer-background">
<img src="assets/images/icons/data_eng_right.svg" alt="data engineer" title="Data Engineer">
</div>
<div class="data-engineer-text text-container">
<p>dbt with Teradata Vantage</p>
<p>This tutorial demonstrates how to use dbt (Data Build Tool) with Teradata Vantage. It’s based on the original dbt Jaffle Shop tutorial. A couple of models have been adjusted to the SQL dialect supported by Vantage.</p>
</div>
<div class="getting-started-button">
<a href="https://quickstarts.teradata.com/dbt.html" target="_blank" class="NoDec">
<button class="data-engineer-button">Get started</button>
</a>
</div>
</div>
<div id="developer" class="tabcontent">
<div class="developer-background">
<img src="assets/images/icons/developer_right.svg" alt="developer" title="Developer">
</div>
<div class="developer-text text-container">
<p>Connect to Vantage using JDBC</p>
<p>This how-to demonstrates how to connect to Teradata Vantage using JDBC using a sample Java application: https://github.com/Teradata/jdbc-sample-app.</p>
</div>
<div class="getting-started-button">
<a href="https://quickstarts.teradata.com/jdbc.html" class="NoDec" target="_blank">
<button class="developer-button">Get started</button>
</a>
</div>
</div>
<div id="data-scientist" class="tabcontent">
<div class="data-scientist-background">
<img src="assets/images/icons/scientist_right.svg" alt="data scientist" title="Data Scientist">
</div>
<div class="data-scientist-text text-container">
<p>Train ML models in Vantage</p>
<p>There are situations when you want to quickly validate a machine learning model idea. You have a model type in mind. You don’t want to operationalize with an ML pipeline just yet. You just want to test out if the relationship you had in mind exists. Also, sometimes even your production deployment doesn’t require constant relearning with MLops. In such cases, you can use Vantage Analytics Library (VAL) and multiple ML model types it supports.</p>
</div>
<div class="getting-started-button">
<a href="https://quickstarts.teradata.com/ml.html" class="NoDec" target="_blank">
<button class="data-scientist-button">Get started</button>
</a>
</div>
</div>
</section>
</div>
<!--Top picks from Teradata-->
<div class="container-fluid">
<div class="top-picks-teradata">
<pc class="jumpin-text">Top picks from Teradata</p>
</div>
<section class="items-list">
<div class="list-item-top-picks">
<div class="top-picks">
<div>Send queries using REST API</div>
<div class="circle">
<img class="icon-1" src="assets/images/icons/tools-icon.svg" alt="tools" title="Tools">
</div>
</div>
<div class="top-picks-body">
<p>Teradata Query Service is a REST API for Vantage that you can use to run standard SQL statements without managing client-side drivers.</p>
</div>
<div class="content-buttons">
<a href="https://quickstarts.teradata.com/query-service/send-queries-using-rest-api.html" title="Send queries using REST API" rel="nofollow" target="_blank" class="top-button decoration">How-tos</a>
<a href="https://downloads.teradata.com/api/teradata_query_service" target="_blank" title="Tools" rel="nofollow" class="top-button decoration">Tools</a>
</div>
</div>
<div class="list-item-top-picks">
<div class="top-picks">
Teradata Vantage connection in DBeaver
<div class="circle">
<img class="icon-2" src="assets/images/icons/chevron.svg" alt="arrow" title="Tools">
</div>
</div>
<div class="top-picks-body">
<p>This how-to demonstrates how to create a connection to Teradata Vantage with DBeaver.</p>
</div>
<div class="content-buttons">
<a href="https://quickstarts.teradata.com/other-integrations/configure-a-teradata-vantage-connection-in-dbeaver.html" target="_blank" title="Teradata Vantage with DBeaver" rel="nofollow" class="top-button decoration">How-tos</a>
</div>
</div>
<div class="list-item-top-picks">
<div class="top-picks-3">
Vantage from a Jupyter notebook
<div class="circle-3">
<img class="icon-2" src="assets/images/icons/tool-icon.svg" alt="tools" title="Tools">
</div>
</div>
<div class="top-picks-body w-card-3">
<p>Go through connecting to Teradata Vantage from a Jupyter notebook.</p>
</div>
<div class="content-buttons">
<a href="https://quickstarts.teradata.com/jupyter.html" title="Vantage from a Jupyter notebook" rel="nofollow" class="top-button decoration" target="_blank">How-tos</a>
<a href="https://teradata.github.io/jupyterextensions/#/" target="_blank" title="Jupyter Extensions" rel="nofollow" class="top-button decoration">Tools</a>
</div>
</div>
<div class="list-item-top-picks">
<div class="top-picks">
Getting Started with Python
<div class="circle">
<img class="icon-3" src="assets/images/icons/chevron.svg" alt="arrow" title="Arrow">
</div>
</div>
<div class="top-picks-body w-card-4">
<p>New Guide - A Walk through on the Teradata Python Connector to get going, and explore the basic operations you can do, and other tools available. </p>
</div>
<div class="content-buttons">
<a href="https://downloads.teradata.com/download/connectivity/teradata-sql-driver-for-python" target="_blank" title="view" rel="nofollow" class="top-button decoration">Libraries</a>
<a href="https://github.com/Teradata/python-driver" title="view" rel="nofollow" class="top-button decoration" target="_blank">APIs</a>
<a href="https://docs.teradata.com/r/Teradata-Tools-and-Utilities-Release-Definition/June-2021/Product-Information/Teradata-SQL-Driver-for-Python" target="_blank" title="view" rel="nofollow" class="top-button decoration">Guides</a>
</div>
</div>
<div class="list-item-top-picks">
<div class="top-picks">
ModelOps
<div class="circle">
<img class="icon-2" src="assets/images/icons/book.svg" alt="Library" title="Library">
</div>
</div>
<div class="top-picks-body w-card-5">
<p>Create a new project in ModelOps, upload the required data to Vantage, and track the full lifecycle of an imported Diabetes demo model using BYOM mechanisms.</p>
</div>
<div class="content-buttons">
<a href="https://quickstarts.teradata.com/modelops/deploy-and-monitor-machine-learning-models-with-teradata-modelops-and-byom.html" title="view" rel="nofollow" class="top-button decoration" target="_blank">Tutorial</a>
</div>
</div>
<div class="list-item-top-picks">
<div class="top-picks">
JDBC Driver - Release 17.20
<div class="circle">
<img class="icon-3" src="assets/images/icons/tool-icon.svg" alt="tools" title="tools">
</div>
</div>
<div class="top-picks-body">
<p>The JDBC Driver allows you to connect to the Teradata database from external applications.</p>
</div>
<div class="content-buttons">
<a href="https://downloads.teradata.com/download/connectivity/jdbc-driver" title="view" rel="nofollow" class="top-button decoration" target="_blank">Driver</a>
<a href="https://docs.teradata.com/r/Teradata-Tools-and-Utilities-Release-Definition/June-2021/Product-Information/Teradata-JDBC-Driver" title="view" rel="nofollow" class="top-button decoration" target="_blank">Product Release</a>
</div>
</div>
</section>
</div>
<!--Top picks from Teradata-->
<!--Stay connected-->
<div class="container-fluid">
<section>
<div class="stay-connected-section">
<p class="jumpin-text">Stay connected</p>
</div>
<div class="row-cards-stay-connected">
<div class="stay-connected">
<a href="https://support.teradata.com/community" class="NoDec" target="_blank">
<img src="assets/images/icons/people-1.svg" alt="Teradata Community" title="Teradata Community" class="stay-connected-icon">
<p class="stay-connected-font">Teradata Community</p>
</a>
</div>
<div class="stay-connected">
<a href="https://github.com/Teradata" class="NoDec" target="_blank">
<img src="assets/images/icons/github.svg" alt="Github" title="Github" class="stay-connected-icon">
<p class="stay-connected-font">Github</p>
</a>
</div>
<div class="stay-connected">
<a href="https://stackoverflow.com/questions/tagged/teradata" class="NoDec" target="_blank">
<img src="assets/images/icons/stackoverflow.svg" alt="Stack Overflow" title="Stack Overflow" class="stay-connected-icon">
<p class="stay-connected-font">Stack Overflow </p>
</a>
</div>
<div class="stay-connected">
<a href="https://medium.com/teradata" class="NoDec" target="_blank">
<img src="assets/images/icons/medium.png" alt="Medium" title="Medium" class="stay-connected-icon-medium">
<p class="stay-connected-font">Teradata Technical Blogs</p>
</a>
</div>
</div>
</section>
</div>
<!--Stay connected-->
<!--footer-->
<!--footer-->
<footer class="footer-nav background-grayLight">
<section class="container-wide active">
<ul class="row footer-nav__desktop d-none d-xl-flex">
<li class="col-12 col-md">
<div>
<span class="h4 fontWeight-semiBold">Who we help</span>
<ul>
<li>
<a href="https://www.teradata.com/Who-We-Help" data-celebrus="Footer Menu - Roles" data-gtm-category="Footer" data-gtm-action="footer nav click" data-gtm-label="Roles | /Who-We-Help">Roles</a>
</li>
<li>
<a href="https://www.teradata.com/Partners" data-celebrus="Footer Menu - Partners" data-gtm-category="Footer" data-gtm-action="footer nav click" data-gtm-label="Partners | /Partners">Partners</a>
</li>
<li>
<a href="https://teradata.my.site.com/teradataPRM/s/self-registration" data-celebrus="Footer Menu - Partner registration" data-gtm-category="Footer" data-gtm-action="footer nav click" data-gtm-label="Partner registration | https://teradata.my.site.com/teradataPRM/s/self-registration" target="_blank" rel="noopener">Partner registration
<span class="material-symbols-outlined md-16 ms-2">
<img src="assets/images/small-external.svg">
</span>
</a>
</li>
<li>
<a href="https://teradata.my.site.com/teradataPRM/s/login/" data-celebrus="Footer Menu - Partner portal login" data-gtm-category="Footer" data-gtm-action="footer nav click" data-gtm-label="Partner portal login | https://teradata.my.site.com/teradataPRM/s/login/" target="_blank" rel="noopener">Partner portal login
<span class="material-symbols-outlined md-16 ms-2">
<img src="assets/images/small-external.svg">
</span>
</a>
</li>
<li>
<a href="https://www.teradata.com/Industries" data-celebrus="Footer Menu - Industries" data-gtm-category="Footer" data-gtm-action="footer nav click" data-gtm-label="Industries | /Industries">Industries</a>
</li>
<li>
<a href="https://www.teradata.com/Customers" data-celebrus="Footer Menu - Success stories" data-gtm-category="Footer" data-gtm-action="footer nav click" data-gtm-label="Success stories | /Customers">Success stories</a>
</li>
</ul>
</div>
</li>
<li class="col-12 col-md">
<div>
<span class="h4 fontWeight-semiBold">Our platform</span>
<ul>
<li>
<a href="https://www.teradata.com/Platform" data-celebrus="Footer Menu - Platform" data-gtm-category="Footer" data-gtm-action="footer nav click" data-gtm-label="Platform | /Platform">Platform</a>
</li>
<li>
<a href="https://www.teradata.com/Platform/Use-Cases" data-celebrus="Footer Menu - Use cases" data-gtm-category="Footer" data-gtm-action="footer nav click" data-gtm-label="Use cases | /Platform/Use-Cases">Use cases</a>
</li>
<li>
<a href="https://www.teradata.com/Platform/VantageCloud" data-celebrus="Footer Menu - VantageCloud" data-gtm-category="Footer" data-gtm-action="footer nav click" data-gtm-label="VantageCloud | /Platform/VantageCloud">VantageCloud</a>
</li>
<li>
<a href="https://www.teradata.com/Platform/ClearScape-Analytics" data-celebrus="Footer Menu - ClearScape Analytics" data-gtm-category="Footer" data-gtm-action="footer nav click" data-gtm-label="ClearScape Analytics | /Platform/ClearScape-Analytics">ClearScape Analytics</a>
</li>
<li>
<a href="https://www.teradata.com/Platform/Deployment" data-celebrus="Footer Menu - Deployment" data-gtm-category="Footer" data-gtm-action="footer nav click" data-gtm-label="Deployment | /Platform/Deployment">Deployment
</a>
</li>
</ul>
</div>
</li>
<li class="col-12 col-md">
<div>
<span class="h4 fontWeight-semiBold">Getting started</span>
<ul>
<li>
<a href="https://www.teradata.com/Getting-Started/Pricing" data-celebrus="Footer Menu - Pricing" data-gtm-category="Footer" data-gtm-action="footer nav click" data-gtm-label="Pricing | /Getting-Started/Pricing">Pricing
</a>
</li>
<li>
<a href="https://www.teradata.com/Getting-Started/Demos" data-celebrus="Footer Menu - Demos" data-gtm-category="Footer" data-gtm-action="footer nav click" data-gtm-label="Demos | /Getting-Started/Demos">Demos
</a>
</li>
<li>
<a href="https://www.teradata.com/Getting-Started/Modernization-Workshop" data-celebrus="Footer Menu - Modernization workshop" data-gtm-category="Footer" data-gtm-action="footer nav click" data-gtm-label="Modernization workshop | /Getting-Started/Modernization-Workshop">Modernization workshop
</a>
</li>
<li>
<a href="https://www.teradata.com/Getting-Started/Executive-Briefing-Center" data-celebrus="Footer Menu - Executive Briefing Center" data-gtm-category="Footer" data-gtm-action="footer nav click" data-gtm-label="Executive Briefing Center | /Getting-Started/Executive-Briefing-Center">Executive Briefing Center
</a>
</li>
<li>
<a href="https://www.teradata.com/Events" data-celebrus="Footer Menu - Events" data-gtm-category="Footer" data-gtm-action="footer nav click" data-gtm-label="Events | /Events">Events
</a>
</li>
<li>
<a href="https://www.teradata.com/University" data-celebrus="Footer Menu - Learning" data-gtm-category="Footer" data-gtm-action="footer nav click" data-gtm-label="Learning | /University">Learning
</a>
</li>
</ul>
</div>
</li>
<li class="col-12 col-md">
<div>
<span class="h4 fontWeight-semiBold">Insights</span>
<ul>
<li>
<a href="https://www.teradata.com/Insights?Topics=AI-and-Machine-Learning" data-celebrus="Footer Menu - AI & ML" data-gtm-category="Footer" data-gtm-action="footer nav click" data-gtm-label="AI & ML | /Insights?Topics=AI-and-Machine-Learning">AI & ML
</a>
</li>
<li>
<a href="https://www.teradata.com/Insights?Topics=Big-Data" data-celebrus="Footer Menu - Big Data" data-gtm-category="Footer" data-gtm-action="footer nav click" data-gtm-label="Big Data | /Insights?Topics=Big-Data">Big Data
</a>
</li>
<li>
<a href="https://www.teradata.com/Insights?Topics=Cloud" data-celebrus="Footer Menu - Cloud" data-gtm-category="Footer" data-gtm-action="footer nav click" data-gtm-label="Cloud | /Insights?Topics=Cloud">Cloud
</a>
</li>
<li>
<a href="https://www.teradata.com/Insights?Topics=Data-Analytics" data-celebrus="Footer Menu - Data Analytics" data-gtm-category="Footer" data-gtm-action="footer nav click" data-gtm-label="Data Analytics | /Insights?Topics=Data-Analytics">Data Analytics
</a>
</li>
<li>
<a href="https://www.teradata.com/Insights?Topics=Data-Management" data-celebrus="Footer Menu - Data Management" data-gtm-category="Footer" data-gtm-action="footer nav click" data-gtm-label="Data Management | /Insights?Topics=Data-Management">Data Management
</a>
</li>
<li>
<a href="https://www.teradata.com/Insights?Topics=Data-Science" data-celebrus="Footer Menu - Data Science" data-gtm-category="Footer" data-gtm-action="footer nav click" data-gtm-label="Data Science | /Insights?Topics=Data-Science">Data Science
</a>
</li>
<li>
<a href="https://www.teradata.com/Glossary" data-celebrus="Footer Menu - Glossary" data-gtm-category="Footer" data-gtm-action="footer nav click" data-gtm-label="Glossary | /Glossary">Glossary
</a>
</li>
</ul>
</div>
</li>
<li class="col-12 col-md">
<div>
<span class="h4 fontWeight-semiBold">About us</span>
<ul>
<li>
<a href="https://www.teradata.com/About-Us" data-celebrus="Footer Menu - Who we are" data-gtm-category="Footer" data-gtm-action="footer nav click" data-gtm-label="Who we are | /About-Us">Who we are
</a>
</li>
<li>
<a href="https://www.teradata.com/About-Us/Leadership" data-celebrus="Footer Menu - Our leadership" data-gtm-category="Footer" data-gtm-action="footer nav click" data-gtm-label="Our leadership | /About-Us/Leadership">Our leadership
</a>
</li>
<li>
<a href="https://www.teradata.com/Newsroom" data-celebrus="Footer Menu - Newsroom" data-gtm-category="Footer" data-gtm-action="footer nav click" data-gtm-label="Newsroom | /Newsroom">Newsroom
</a>
</li>
<li>
<a href="https://careers.teradata.com" data-celebrus="Footer Menu - Careers" data-gtm-category="Footer" data-gtm-action="footer nav click" data-gtm-label="Careers | https://careers.teradata.com" target="_blank" rel="noopener">Careers
<span class="material-symbols-outlined md-16 ms-2">
<img src="assets/images/small-external.svg">
</span>
</a>
</li>
<li>
<a href="https://investor.teradata.com" data-celebrus="Footer Menu - Investors" data-gtm-category="Footer" data-gtm-action="footer nav click" data-gtm-label="Investors | https://investor.teradata.com" target="_blank" rel="noopener">Investors
<span class="material-symbols-outlined md-16 ms-2">
<img src="assets/images/small-external.svg">
</span>
</a>
</li>
</ul>
</div>
</li>
<li class="col-12 col-md">
<span class="h4">Social media</span>
<ul class="footer_social">
<li>
<a data-gtm-category="Footer" data-gtm-action="social click" data-gtm-label="https://www.linkedin.com/company/teradata" href="https://www.linkedin.com/company/teradata" data-celebrus="Social Link - LinkedIn" class="icon-social" target="_blank" rel="noopener" aria-label="Social Link - LinkedIn">
<svg>
<use xlink:href="#icon-social-linkedIn"></use>
</svg>
</a>
</li>
<li>
<a data-gtm-category="Footer" data-gtm-action="social click" data-gtm-label="https://twitter.com/teradata" href="https://twitter.com/teradata" data-celebrus="Social Link - Twitter" class="icon-social" target="_blank" rel="noopener" aria-label="Social Link - Twitter">
<svg width="1200" height="1227" viewBox="0 0 1200 1227" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M714.163 519.284L1160.89 0H1055.03L667.137 450.887L357.328 0H0L468.492 681.821L0 1226.37H105.866L515.491 750.218L842.672 1226.37H1200L714.137 519.284H714.163ZM569.165 687.828L521.697 619.934L144.011 79.6944H306.615L611.412 515.685L658.88 583.579L1055.08 1150.3H892.476L569.165 687.854V687.828Z" fill="white"/>
</svg>
</a>
</li>
<li>
<a data-gtm-category="Footer" data-gtm-action="social click" data-gtm-label="https://www.facebook.com/Teradata" href="https://www.facebook.com/Teradata" data-celebrus="Social Link - Facebook" class="icon-social" target="_blank" rel="noopener" aria-label="Social Link - Facebook">
<svg>
<use xlink:href="#icon-social-facebook"></use>
</svg>
</a>
</li>
<li>
<a data-gtm-category="Footer" data-gtm-action="social click" data-gtm-label="https://www.instagram.com/teradata/" href="https://www.instagram.com/teradata/" data-celebrus="Social Link - Instagram" class="icon-social" target="_blank" rel="noopener" aria-label="Social Link - Instagram">
<svg>
<use xlink:href="#icon-social-instagram"></use>
</svg>
</a>
</li>
<li>
<a data-gtm-category="Footer" data-gtm-action="social click" data-gtm-label="https://www.youtube.com/user/teradata" href="https://www.youtube.com/user/teradata" data-celebrus="Social Link - YouTube" class="icon-social" target="_blank" rel="noopener" aria-label="Social Link - Youtube">
<svg>
<use xlink:href="#icon-social-youTube"></use>
</svg>
</a>
</li>
<li>
<a data-gtm-category="Footer" data-gtm-action="social click" data-gtm-label="/rss" href="/rss" data-celebrus="Social Link - RSS" class="icon-social" aria-label="Social Link - RSS">
<svg>
<use xlink:href="#icon-social-rss"></use>
</svg>
</a>
</li>
</ul>
</li>
</ul>
<nav class="accordionContent accordionContent-centered d-block d-xl-none footer-nav__mobile">
<details>
<summary class="px-0 py-4 d-flex justify-content-between align-items-center">
<span class="h4 fontWeight-semiBold p-0">Who we help</span>
<span class="icon caret"></span>
</summary>
<ul class="pb-4">
<li class="my-3"><a class="nav-2" href="https://www.teradata.com/Who-We-Help" data-celebrus="">Roles</a></li>
<li class="my-3"><a class="nav-2" href="https://www.teradata.com/Partners" data-celebrus="">Partners</a></li>
<li class="my-3"><a class="nav-2" href="https://teradata.my.site.com/teradataPRM/s/self-registration" data-celebrus="" target="_blank" rel="noopener">Partner registration</a></li>
<li class="my-3"><a class="nav-2" href="https://teradata.my.site.com/teradataPRM/s/login/" data-celebrus="" target="_blank" rel="noopener">Partner portal login</a></li>
<li class="my-3"><a class="nav-2" href="https://www.teradata.com/Industries" data-celebrus="">Industries</a></li>
<li class="my-3"><a class="nav-2" href="https://www.teradata.com/Customers" data-celebrus="">Success stories</a></li>
</ul>
</details>
<details>
<summary class="px-0 py-4 d-flex justify-content-between align-items-center">
<span class="h4 fontWeight-semiBold p-0">Our platform</span>
<span class="icon caret"></span>
</summary>
<ul class="pb-4">
<li class="my-3"><a class="nav-2" href="https://www.teradata.com/Platform" data-celebrus="">Platform</a></li>
<li class="my-3"><a class="nav-2" href="https://www.teradata.com/Platform/Use-Cases" data-celebrus="">Use cases</a></li>
<li class="my-3"><a class="nav-2" href="https://www.teradata.com/Platform/VantageCloud" data-celebrus="">VantageCloud</a></li>
<li class="my-3"><a class="nav-2" href="https://www.teradata.com/Platform/ClearScape-Analytics" data-celebrus="">ClearScape Analytics</a></li>
<li class="my-3"><a class="nav-2" href="https://www.teradata.com/Platform/Deployment" data-celebrus="">Deployment</a></li>
</ul>
</details>
<details>
<summary class="px-0 py-4 d-flex justify-content-between align-items-center">
<span class="h4 fontWeight-semiBold p-0">Getting started</span>
<span class="icon caret"></span>
</summary>
<ul class="pb-4">
<li class="my-3"><a class="nav-2" href="https://www.teradata.com/Getting-Started/Pricing" data-celebrus="">Pricing</a></li>
<li class="my-3"><a class="nav-2" href="https://www.teradata.com/Getting-Started/Demos" data-celebrus="">Demos</a></li>
<li class="my-3"><a class="nav-2" href="https://www.teradata.com/Getting-Started/Modernization-Workshop" data-celebrus="">Modernization workshop</a></li>
<li class="my-3"><a class="nav-2" href="https://www.teradata.com/Getting-Started/Executive-Briefing-Center" data-celebrus="">Executive Briefing Center</a></li>
<li class="my-3"><a class="nav-2" href="https://www.teradata.com/Events" data-celebrus="">Events</a></li>
<li class="my-3"><a class="nav-2" href="https://www.teradata.com/University" data-celebrus="">Learning</a></li>
</ul>
</details>
<details>
<summary class="px-0 py-4 d-flex justify-content-between align-items-center">
<span class="h4 fontWeight-semiBold p-0">Insights</span>
<span class="icon caret"></span>
</summary>
<ul class="pb-4">
<li class="my-3"><a class="nav-2" href="https://www.teradata.com/Insights?Topics=AI-and-Machine-Learning" data-celebrus="">AI & ML</a></li>
<li class="my-3"><a class="nav-2" href="https://www.teradata.com/Insights?Topics=Big-Data" data-celebrus="">Big Data</a></li>
<li class="my-3"><a class="nav-2" href="https://www.teradata.com/Insights?Topics=Cloud" data-celebrus="">Cloud</a></li>
<li class="my-3"><a class="nav-2" href="https://www.teradata.com/Insights?Topics=Data-Analytics" data-celebrus="">Data Analytics</a></li>
<li class="my-3"><a class="nav-2" href="https://www.teradata.com/Insights?Topics=Data-Management" data-celebrus="">Data Management</a></li>
<li class="my-3"><a class="nav-2" href="https://www.teradata.com/Insights?Topics=Data-Science" data-celebrus="">Data Science</a></li>
<li class="my-3"><a class="nav-2" href="https://www.teradata.com/Glossary" data-celebrus="">Glossary</a></li>
</ul>
</details>
<details>
<summary class="px-0 py-4 d-flex justify-content-between align-items-center">
<span class="h4 fontWeight-semiBold p-0">About us</span>
<span class="icon caret"></span>
</summary>
<ul class="pb-4">
<li class="my-3"><a class="nav-2" href="https://www.teradata.com/About-Us" data-celebrus="">Who we are</a></li>
<li class="my-3"><a class="nav-2" href="https://www.teradata.com/About-Us/Leadership" data-celebrus="">Our leadership</a></li>
<li class="my-3"><a class="nav-2" href="https://www.teradata.com/Newsroom" data-celebrus="">Newsroom</a></li>
<li class="my-3"><a class="nav-2" href="https://careers.teradata.com" data-celebrus="" target="_blank" rel="noopener">Careers</a></li>
<li class="my-3"><a class="nav-2" href="https://investor.teradata.com" data-celebrus="" target="_blank" rel="noopener">Investors</a></li>
</ul>
</details>
<nav class="my-7">
<span class="h4">Social media</span>
<ul class="footer_social">
<li>
<a href="https://www.linkedin.com/company/teradata" class="icon-social" target="_blank" rel="noopener" aria-label="Social Link - LinkedIn">
<svg>
<use xlink:href="#icon-social-linkedIn"></use>
</svg>
</a>
</li>
<li>