PowerShell- Monitoring Group Of Services on Group of Servers with Alternate Credential
This post explains how to monitor a multiple services on a group of servers with alternate credentials.
This script will allow...
2014-07-03
699 reads
This post explains how to monitor a multiple services on a group of servers with alternate credentials.
This script will allow...
2014-07-03
699 reads
Introduction
This script can be used for exporting specified performance counter values from multiple remote target servers to CSV file. The...
2014-06-10
1,532 reads
Introduction
This script can be used for exporting specified performance counter values from multiple remote target servers to CSV file. The...
2014-06-10
628 reads
This script is used to discover all the server information and captures disk drive utilization details. The drive details are...
2014-05-21
1,202 reads
This script is used to discover all the server information and captures disk drive utilization details. The drive details are...
2014-05-21
563 reads
One of the OP requested in the forum to find all table details of any database. The details which includes Number...
2014-05-01
571 reads
One of the OP requested in the forum to find all table details of any database. The details which includes Number...
2014-05-01
1,080 reads
Input values are validated using various mechanisms. let’s start by examining how you would validate input parameters in Windows PowerShell...
2014-04-28
760 reads
Input values are validated using various mechanisms. let’s start by examining how you would validate input parameters in Windows PowerShell...
2014-04-28
2,003 reads
sys.sql_modules catalog view which got introduced from SQL 2005 onwards. The sql_modules which includes the objects of type P, RF, V, TR, FN, IF, TF,...
2014-04-14
823 reads
By Steve Jones
Redgate is a for-profit company. We look to make money by building and selling...
If you've ever loaded a 2 GB CSV into pandas just to run a...
By James Serra
What problem is Fabric Ontology trying to solve? For years, most data conversations have...
Comments posted to this topic are about the item The New Software Team
Comments posted to this topic are about the item Database Mail in SQL Server...
Comments posted to this topic are about the item The string_agg function
We create the following table and then insert some records in it:
create table t1 ( id int primary key, category char(1) not null, product varchar(50) ); insert into t1 values (1, 'A', 'Product 1'), (2, 'A', 'Product 2'), (3, 'A', 'Product 3'), (4, 'B', 'Product 4'), (5, 'B', 'Product 5');What happens if we execute the following query in both Sql Server and PostgreSQL?
select id,
category,
string_agg(product, ';')
over (partition by category order by id
rows between unbounded preceding and unbounded following) as stragg
from t1; See possible answers