Personnaliser

OK

Sqlscript for SAP Hana - Jörg Brandeis

Note : 0

0 avis
  • Soyez le premier à donner un avis

Vous en avez un à vendre ?

Vendez-le-vôtre
Filtrer par :
Neuf (4)
Occasion
Reconditionné

82,42 €

Produit Neuf

  • Ou 20,61 € /mois

    • Livraison à 0,01 €
    Voir les modes de livraison

    rarewaves-uk

    PRO Vendeur favori

    4,8/5 sur + de 1 000 ventes

    Expédition rapide et soignée depuis l`Angleterre - Délai de livraison: entre 10 et 20 jours ouvrés.

    Nos autres offres

    • 105,87 €

      Produit Neuf

      Ou 26,47 € /mois

      • Livraison à 0,01 €
      • Livré entre le 18 et le 25 avril
      Voir les modes de livraison

      Brand new, In English, Fast shipping from London, UK; Tout neuf, en anglais, expédition rapide depuis Londres, Royaume-Uni;ria9781493221394_dbm

    • 102,27 €

      Produit Neuf

      Ou 25,57 € /mois

      • Livraison : 3,99 €
      • Livré entre le 18 et le 22 avril
      Voir les modes de livraison
      4,8/5 sur + de 1 000 ventes
    • 131,92 €

      Produit Neuf

      Ou 32,98 € /mois

      • Livraison : 5,00 €
      • Livré entre le 17 et le 21 avril
      Voir les modes de livraison

      Exp¿di¿ en 7 jours ouvr¿s

    Publicité
     
    Vous avez choisi le retrait chez le vendeur à
    • Payez directement sur Rakuten (CB, PayPal, 4xCB...)
    • Récupérez le produit directement chez le vendeur
    • Rakuten vous rembourse en cas de problème

    Gratuit et sans engagement

    Félicitations !

    Nous sommes heureux de vous compter parmi nos membres du Club Rakuten !

    En savoir plus

    Retour

    Horaires

        Note :


        Avis sur Sqlscript For Sap Hana de Jörg Brandeis Format Relié  - Livre Littérature Générale

        Note : 0 0 avis sur Sqlscript For Sap Hana de Jörg Brandeis Format Relié  - Livre Littérature Générale

        Les avis publiés font l'objet d'un contrôle automatisé de Rakuten.


        Présentation Sqlscript For Sap Hana de Jörg Brandeis Format Relié

         - Livre Littérature Générale

        Livre Littérature Générale - Jörg Brandeis - 01/09/2021 - Relié - Langue : Anglais

        . .

      • Auteur(s) : Jörg Brandeis
      • Editeur : Rheinwerk Publishing Inc.
      • Langue : Anglais
      • Parution : 01/09/2021
      • Format : Moyen, de 350g à 1kg
      • Nombre de pages : 409
      • Expédition : 1026
      • Dimensions : 26.0 x 18.3 x 3.1
      • ISBN : 9781493221394



      • Résumé :

        New to SQLScript-or maybe looking to brush up on a specific task? Whatever your skill level, this comprehensive guide to SQLScript for SAP HANA is for you! Master language elements, data types, and the function library.?Learn to implement SAP HANA database procedures and functions using imperative and declarative SQLScript. Integrate with ABAP, SAP BW on SAP HANA, and SAP BW/4HANA. Finally, test, troubleshoot, and analyze your SQLScript programs. Code like the pros!

        Highlights include:
        1) SAP HANA Studio 2) SAP HANA Web-Based Development Workbench 3) SAP Web IDE 4) SQL Console 5) Language basics 6) Declarative and imperative programming 7) Data types 8) Database programming 9) ABAP-managed database procedures (AMDP) 10) SAP BW and SAP BW/4HANA 11) Clean code 12) Troubleshooting and analysis

        ...

        Biographie:
        ? ... Introduction ... 15
        ? ... Structure of the Book ... 18
        ? ... Acknowledgments ... 20
        ? 1 ... SAP HANA ... 21
        ? 1.1 ... What Is SAP HANA? ... 22
        ? 1.1.1 ... SAP HANA: A Fast SQL Database ... 22
        ? 1.1.2 ... SAP HANA: An Application Server ... 26
        ? 1.1.3 ... SAP HANA: A Collection of Tools ... 27
        ? 1.2 ... System Architecture ... 29
        ? 1.2.1 ... SAP HANA Server Components ... 29
        ? 1.2.2 ... Databases and Tenants ... 30
        ? 1.3 ... Organizing Database Objects ... 32
        ? 1.3.1 ... Database Schemas ... 32
        ? 1.3.2 ... Database Catalogs ... 34
        ? 1.3.3 ... Content and Repositories ... 35
        ? 1.4 ... Development Environments ... 36
        ? 1.4.1 ... SAP HANA Studio ... 37
        ? 1.4.2 ... SAP HANA Database Explorer ... 40
        ? 1.5 ... The SQL Console ... 44
        ? 1.6 ... Summary ... 47
        ? 2 ... Getting Started with SQLScript ... 49
        ? 2.1 ... SQL versus SQLScript ... 49
        ? 2.2 ... Basic Language Elements ... 53
        ? 2.2.1 ... Statements ... 53
        ? 2.2.2 ... Whitespace ... 54
        ? 2.2.3 ... Comments ... 54
        ? 2.2.4 ... Literals ... 56
        ? 2.2.5 ... Identifiers ... 58
        ? 2.2.6 ... Access to Local Variables and Parameters ... 59
        ? 2.2.7 ... System Variables ... 60
        ? 2.2.8 ... Reserved Words ... 61
        ? 2.2.9 ... Operators ... 61
        ? 2.2.10 ... Expressions ... 63
        ? 2.2.11 ... Predicates ... 65
        ? 2.2.12 ... Data Types ... 66
        ? 2.2.13 ... The NULL Value ... 67
        ? 2.2.14 ... The DUMMY Table ... 69
        ? 2.3 ... Modularization and Logical Containers ... 70
        ? 2.3.1 ... Blocks ... 72
        ? 2.3.2 ... Procedures ... 75
        ? 2.3.3 ... User-Defined Functions ... 83
        ? 2.3.4 ... User-Defined Libraries ... 87
        ? 2.4 ... Sample Program ... 89
        ? 2.4.1 ... Requirements ... 89
        ? 2.4.2 ... Requirements Analysis ... 90
        ? 2.4.3 ... Implementation ... 91
        ? 2.4.4 ... Testing the Implementation ... 97
        ? 2.5 ... Summary ... 100
        ? 3 ... Declarative Programming in SQLScript ... 101
        ? 3.1 ... Table Variables ... 102
        ? 3.1.1 ... Declaring Table Variables ... 102
        ? 3.1.2 ... Using Table Variables ... 103
        ? 3.2 ... SELECT Statements ... 104
        ? 3.2.1 ... SELECT Clauses ... 105
        ? 3.2.2 ... Field List of SELECT Clauses ... 105
        ? 3.2.3 ... FROM Clauses ... 119
        ? 3.2.4 ... Joins ... 122
        ? 3.2.5 ... WHERE Conditions ... 130
        ? 3.2.6 ... WITH Clauses ... 137
        ? 3.2.7 ... GROUP BY Clauses ... 139
        ? 3.2.8 ... HAVING Clauses ... 141
        ? 3.2.9 ... ORDER BY Clauses ... 142
        ? 3.2.10 ... Set Theory ... 143
        ? 3.2.11 ... Subqueries ... 145
        ? 3.2.12 ... Alias Names ... 146
        ? 3.3 ... Other Operators ... 148
        ? 3.3.1 ... Calculation Engine Plan Operators ... 148
        ? 3.3.2 ... MAP_MERGE Operator ... 149
        ? 3.3.3 ... MAP_REDUCE Operator ... 150
        ? 3.4 ... Summary ... 151
        ? 4 ... Data Types and Their Processing ... 153
        ? 4.1 ... Character Strings ... 153
        ? 4.1.1 ... Data Types for Character Strings ... 154
        ? 4.1.2 ... Conversions ... 157
        ? 4.1.3 ... Character String Functions ... 157
        ? 4.1.4 ... SQLSCRIPT_STRING Library ... 171
        ? 4.2 ... Date and Time ... 176
        ? 4.2.1 ... Date Information ... 176
        ? 4.2.2 ... Time Information ... 181
        ? 4.2.3 ... Combined Time and Date Information ... 182
        ? 4.2.4 ... Processing Time and Date Values ... 182
        ? 4.2.5 ... Examples of Processing Time Values ... 187
        ? 4.3 ... Numerical Data ... 189
        ? 4.3.1 ... Basic Arithmetic Operations ... 191
        ? 4.3.2 ... Square Roots and Exponents ... 191
        ? 4.3.3 ... Logarithms ... 192
        ? 4.3.4 ... Rounding or Trimming ... 192
        ? 4.3.5 ... Trigonometry ... 194
        ? 4.3....

        Sommaire:
        ? ... Introduction ... 15
        ? ... Structure of the Book ... 18
        ? ... Acknowledgments ... 20
        ? 1 ... SAP HANA ... 21
        ? 1.1 ... What Is SAP HANA? ... 22
        ? 1.1.1 ... SAP HANA: A Fast SQL Database ... 22
        ? 1.1.2 ... SAP HANA: An Application Server ... 26
        ? 1.1.3 ... SAP HANA: A Collection of Tools ... 27
        ? 1.2 ... System Architecture ... 29
        ? 1.2.1 ... SAP HANA Server Components ... 29
        ? 1.2.2 ... Databases and Tenants ... 30
        ? 1.3 ... Organizing Database Objects ... 32
        ? 1.3.1 ... Database Schemas ... 32
        ? 1.3.2 ... Database Catalogs ... 34
        ? 1.3.3 ... Content and Repositories ... 35
        ? 1.4 ... Development Environments ... 36
        ? 1.4.1 ... SAP HANA Studio ... 37
        ? 1.4.2 ... SAP HANA Database Explorer ... 40
        ? 1.5 ... The SQL Console ... 44
        ? 1.6 ... Summary ... 47
        ? 2 ... Getting Started with SQLScript ... 49
        ? 2.1 ... SQL versus SQLScript ... 49
        ? 2.2 ... Basic Language Elements ... 53
        ? 2.2.1 ... Statements ... 53
        ? 2.2.2 ... Whitespace ... 54
        ? 2.2.3 ... Comments ... 54
        ? 2.2.4 ... Literals ... 56
        ? 2.2.5 ... Identifiers ... 58
        ? 2.2.6 ... Access to Local Variables and Parameters ... 59
        ? 2.2.7 ... System Variables ... 60
        ? 2.2.8 ... Reserved Words ... 61
        ? 2.2.9 ... Operators ... 61
        ? 2.2.10 ... Expressions ... 63
        ? 2.2.11 ... Predicates ... 65
        ? 2.2.12 ... Data Types ... 66
        ? 2.2.13 ... The NULL Value ... 67
        ? 2.2.14 ... The DUMMY Table ... 69
        ? 2.3 ... Modularization and Logical Containers ... 70
        ? 2.3.1 ... Blocks ... 72
        ? 2.3.2 ... Procedures ... 75
        ? 2.3.3 ... User-Defined Functions ... 83
        ? 2.3.4 ... User-Defined Libraries ... 87
        ? 2.4 ... Sample Program ... 89
        ? 2.4.1 ... Requirements ... 89
        ? 2.4.2 ... Requirements Analysis ... 90
        ? 2.4.3 ... Implementation ... 91
        ? 2.4.4 ... Testing the Implementation ... 97
        ? 2.5 ... Summary ... 100
        ? 3 ... Declarative Programming in SQLScript ... 101
        ? 3.1 ... Table Variables ... 102
        ? 3.1.1 ... Declaring Table Variables ... 102
        ? 3.1.2 ... Using Table Variables ... 103
        ? 3.2 ... SELECT Statements ... 104
        ? 3.2.1 ... SELECT Clauses ... 105
        ? 3.2.2 ... Field List of SELECT Clauses ... 105
        ? 3.2.3 ... FROM Clauses ... 119
        ? 3.2.4 ... Joins ... 122
        ? 3.2.5 ... WHERE Conditions ... 130
        ? 3.2.6 ... WITH Clauses ... 137
        ? 3.2.7 ... GROUP BY Clauses ... 139
        ? 3.2.8 ... HAVING Clauses ... 141
        ? 3.2.9 ... ORDER BY Clauses ... 142
        ? 3.2.10 ... Set Theory ... 143
        ? 3.2.11 ... Subqueries ... 145
        ? 3.2.12 ... Alias Names ... 146
        ? 3.3 ... Other Operators ... 148
        ? 3.3.1 ... Calculation Engine Plan Operators ... 148
        ? 3.3.2 ... MAP_MERGE Operator ... 149
        ? 3.3.3 ... MAP_REDUCE Operator ... 150
        ? 3.4 ... Summary ... 151
        ? 4 ... Data Types and Their Processing ... 153
        ? 4.1 ... Character Strings ... 153
        ? 4.1.1 ... Data Types for Character Strings ... 154
        ? 4.1.2 ... Conversions ... 157
        ? 4.1.3 ... Character String Functions ... 157
        ? 4.1.4 ... SQLSCRIPT_STRING Library ... 171
        ? 4.2 ... Date and Time ... 176
        ? 4.2.1 ... Date Information ... 176
        ? 4.2.2 ... Time Information ... 181
        ? 4.2.3 ... Combined Time and Date Information ... 182
        ? 4.2.4 ... Processing Time and Date Values ... 182
        ? 4.2.5 ... Examples of Processing Time Values ... 187
        ? 4.3 ... Numerical Data ... 189
        ? 4.3.1 ... Basic Arithmetic Operations ... 191
        ? 4.3.2 ... Square Roots and Exponents ... 191
        ? 4.3.3 ... Logarithms ... 192
        ? 4.3.4 ... Rounding or Trimming ... 192
        ? 4.3.5 ... Trigonometry ... 194
        ? 4.3....

        Détails de conformité du produit

        Consulter les détails de conformité de ce produit (

        Personne responsable dans l'UE

        )
        Le choixNeuf et occasion
        Minimum5% remboursés
        La sécuritéSatisfait ou remboursé
        Le service clientsÀ votre écoute
        LinkedinFacebookTwitterInstagramYoutubePinterestTiktok
        visavisa
        mastercardmastercard
        klarnaklarna
        paypalpaypal
        floafloa
        americanexpressamericanexpress
        Rakuten Logo
        • Rakuten Kobo
        • Rakuten TV
        • Rakuten Viber
        • Rakuten Viki
        • Plus de services
        • À propos de Rakuten
        Rakuten.com