P
Priya Bange
Guest
Hi Experts,
I have a table that will consist of a no of queries that will be executed using a windows service running in background. Am new to C# and trying to determine a way how can I push the output of these queries directly into Elastic Search.
Like in Powershell we can use the piping operator to feed out the output. Do we need to create individual data table objects in C# to store the output of the queries executed on SQL Server before passing it to Elastic Search.
Challenge
As the count of queries is dynamic. I may get different queries with different attributes as request to be executed on SQL Server and load the output into Elastic Search.
Kindly assist.
SQL Server 1 Column1 Column2 Column3
SQL_Server_Instance Query Frequency (Sec)
Local_Host_1 SELECT 1 FROM Table_1 3
Local_Host_1 SELECT Columns FROM Table_2 4
Local_Host_2 SELECT Columns FROM Table_2 2
Local_Host_3 SELECT Columns FROM Table_2 5
Continue reading...
I have a table that will consist of a no of queries that will be executed using a windows service running in background. Am new to C# and trying to determine a way how can I push the output of these queries directly into Elastic Search.
Like in Powershell we can use the piping operator to feed out the output. Do we need to create individual data table objects in C# to store the output of the queries executed on SQL Server before passing it to Elastic Search.
Challenge
As the count of queries is dynamic. I may get different queries with different attributes as request to be executed on SQL Server and load the output into Elastic Search.
Kindly assist.
SQL Server 1 Column1 Column2 Column3
SQL_Server_Instance Query Frequency (Sec)
Local_Host_1 SELECT 1 FROM Table_1 3
Local_Host_1 SELECT Columns FROM Table_2 4
Local_Host_2 SELECT Columns FROM Table_2 2
Local_Host_3 SELECT Columns FROM Table_2 5
Continue reading...