Instruction SQL SERVER BULK INSERT d'un fichier.txt dans une TABLE SQL SERVER
JEAN_21512
Altair Community Member
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" ?
Tagged:
0
Answers
-
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
0 -
Nicholas_21406 said:
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.
-
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:
-
Vous pouvez ensuite appeler la procédure stockée à partir de ce formulaire.
- You could then call the stored procedure from that form.
0 -
Merci pour votre réponse : c'est parfait
0