Instruction SQL SERVER BULK INSERT d'un fichier.txt dans une TABLE SQL SERVER

JEAN_21512
JEAN_21512 Altair Community Member
edited February 20 in Community Q&A

version francaise (16.1.1.28887)

Bonjour,

puis-je avoir un exemple de requête avec une instruction "bulk insert" à partir d'un fichier .txt vers une table sql server dans l'onglet "Requête" ?

image

Answers

  • Nicholas_21406
    Nicholas_21406
    Altair Employee
    edited February 20

    For our English speaking friends: 

    can I have an example query with a "bulk insert" statement from a .txt file to a sql server table in the "Query" tab

  • Nicholas_21406
    Nicholas_21406
    Altair Employee
    edited February 20

    For our English speaking friends: 

    can I have an example query with a "bulk insert" statement from a .txt file to a sql server table in the "Query" tab

    • Je crains que les instructions INSERT ne soient pas autorisées ici. Si, toutefois, vous avez écrit une procédure stockée qui effectuait une insertion groupée, vous pouvez alors l'appeler à partir de ce formulaire.
    • I'm afraid INSERT statements are not allowed here. If, however, you wrote a stored procedure that performed a bulk insert, you could then call it from this form.

    image

    • Vous devrez créer une procédure stockée à l'aide de SQLServer Management Studio ou quelque chose comme ça :
    • You would need to create a stored procedure using SQLServer Management Studio or something like that:

    image

    • Vous pouvez ensuite appeler la procédure stockée à partir de ce formulaire.
    • You could then call the stored procedure from that form.

    image

  • JEAN_21512
    JEAN_21512 Altair Community Member
    edited February 20

    Merci pour votre réponse : c'est parfait ;)