Viewing 15 posts - 436 through 450 (of 5,394 total)
GilaMonster (6/9/2015)
spaghettidba (6/9/2015)
GilaMonster (6/8/2015)
Switch the partitions that are needed out to a staging table, do processing on the staging table...
June 9, 2015 at 7:22 am
FootyRef (6/9/2015)
GilaMonster (6/9/2015)
FootyRef (6/9/2015)
June 9, 2015 at 7:20 am
GilaMonster (6/8/2015)
Switch the partitions that are needed out to a staging table, do processing on the staging table then switch...
June 9, 2015 at 2:50 am
You should identify which stats need updating rather than updating all the stats. You probably have some queries that perform poorly due to stats out of date and you should...
June 9, 2015 at 2:36 am
Alvin Ramard (6/8/2015)
spaghettidba (6/8/2015)
This is what you need:
1. Last full backup
2. Last differential
3. All the log backups...
June 8, 2015 at 7:51 am
Duplicate post.
Replies here please: http://www.sqlservercentral.com/Forums/FindPost1692414.aspx
June 8, 2015 at 7:29 am
You don't need all the differentials since the last full, just the latest one.
This is what you need:
1. Last full backup
2. Last differential
3. All the log backups taken after the...
June 8, 2015 at 7:25 am
The first thing I would check is whether the logins enabled for the database are actually logging in or not. You can captur this event with Extended Events, as Grant...
June 8, 2015 at 7:17 am
This article should put you in the right direction: http://www.sqlservercentral.com/articles/Hierarchy/94040/
June 8, 2015 at 7:12 am
The most detailed and comprehensive article on this subject can be found on Erland Sommarskog's site: http://www.sommarskog.se/query-plan-mysteries.html
June 8, 2015 at 7:06 am
SQL Server instances are always active-passive in a failover cluster: the instance is active on one node and passive on all other nodes. Different instances can be active on one...
June 8, 2015 at 2:15 am
DECLARE @sampleData TABLE(
col1 VARCHAR(4)
, col2 VARCHAR(4)
, col3 VARCHAR(4)
, col4 VARCHAR(4)
, col5 VARCHAR(4)
, col6 VARCHAR(max)
);
INSERT INTO @sampleData VALUES ('abc.','def.','3fg.','59j.','567.','596040');
INSERT INTO @sampleData VALUES ('abc.','def.','3fg.','59j.','567.','596042');
INSERT INTO @sampleData VALUES ('abc.','def.','3fg.','59j.','567.','596043');
INSERT INTO...
June 5, 2015 at 8:31 am
I have a stored procedure that I use for this kind of task.
CREATE PROCEDURE [dba_formatQueryAsHTMLTable]
@query nvarchar(max),
@html nvarchar(max) OUTPUT,
@styles nvarchar(max) = NULL
AS
BEGIN
DECLARE @sql nvarchar(max);
DECLARE @header nvarchar(max);
DECLARE @body nvarchar(max);
IF...
June 5, 2015 at 3:39 am
As you have found out, nested tables are not supported in SQL Server.
You can use an XML column with a schema (typed XML).
Read more about it here: https://www.simple-talk.com/sql/learn-sql-server/introduction-to-xml-schema/
BTW,...
June 5, 2015 at 3:27 am
Viewing 15 posts - 436 through 450 (of 5,394 total)