SP to find the database usage
This SP helps you to find the data file/s and log usage for a given DB
2008-11-01
1,318 reads
This SP helps you to find the data file/s and log usage for a given DB
2008-11-01
1,318 reads
This utility will find strings in procedures, functions, views, and even check constraints.
2008-10-31
440 reads
for huge data insertion and deletion by avoiding locking you can use partition tables.
2008-10-28
792 reads
2008-10-28 (first published: 2008-07-25)
4,033 reads
This procedure is supposed to compare structure (tables, procedures, triggers, foraign keys etc.) of two specified databases.
2008-10-27 (first published: 2008-08-19)
3,079 reads
Disk Fragmentation is one of the cause of degraded performance. Use this script for fragmentation analysis report.
2008-10-24
818 reads
2008-10-24
749 reads
Please read the how to use. unfortunately the orignal document i submitted was truncated 🙁
and i dont have time to remember what i said
2008-10-24 (first published: 2007-08-07)
2,637 reads
2008-10-23
1,455 reads
2008-10-23 (first published: 2008-08-24)
1,917 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