Hello
What is the correct way to query and retrieve data from a SQL Server database using Microsoft SQL Server Management Studio?
Hello
What is the correct way to query and retrieve data from a SQL Server database using Microsoft SQL Server Management Studio?
Hey,
You can use run query activity
Hi @Mihai_Lazer
UiPath.Database.Activities
System.Data.SqlClient
Server=SERVERNAME;
Database=DBNAME;
Trusted_Connection=True;
(or SQL auth if needed)
SELECT * FROM YourTable
DataTable variableRegards
Gokul
hi @Mihai_Lazer
Quick SQL Server Setup in UiPath:
SELECT * FROM YourTable → DataTable: newDTConnection string example: Server=YourServer;Database=YourDB;Integrated Security=True
you can refer to this video for more detail:
Could provide the xaml file @Gokul001
Hi @Mihai_Lazer
DbConnectionstring = Data Source=IPAddress;Initial Catalog=DataBaseNmae;Integrated Security=True;Encrypt=False
kindly look into SS
Regards,
Gokul
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.