Viewing 15 posts - 316 through 330 (of 5,590 total)
Uwe Ricken (8/6/2015)
Carlo Romagnano (8/6/2015)
Very interesting!Thanks!
😀
But in the real world, if Id is uniqueidentifier, how many splits of page will occur?
The fragmentation of the Indexes (INT or GUID) is nearby...
August 6, 2015 at 8:29 am
sqlfriends (8/5/2015)
August 5, 2015 at 6:01 pm
ilovedata (8/5/2015)
DECLARE @IssueData TABLE
(
IssueID INT,
IssueTypeID INT,
Value INT
)
INSERT INTO @IssueData VALUES (1, 1, 20), (1,2,50), (1,3,1), (1,4,2), (2,2, 50), (3,1,20), (3,3,1)
DECLARE @IssueStatus TABLE
(
IssueTypeID INT,
Value INT,
IssueTitle VARCHAR(24)
)
INSERT INTO @IssueStatus VALUES (1, 0,...
August 5, 2015 at 5:38 pm
SSIS/DTS packages. Including maintenance plans. This is harder to change.
August 5, 2015 at 4:43 pm
newbieuser (8/5/2015)
declare @sql nvarchar(max)
SELECT 'ALTER...
August 5, 2015 at 3:28 pm
Jack Corbett (8/5/2015)
SQLRNNR (8/4/2015)
Steve Jones - SSC Editor (8/4/2015)
Is there value in getting the questions/knowledge that people...
August 5, 2015 at 9:26 am
A slight twist on Steve's:
declare @var varchar(8000)
set @var='Name1~50~20~50@Name2~25.5~50~63@Name3~30~80~43@Name4~60~80~23'
SELECT ds1.ItemNumber AS RowNumber,
MAX(CASE WHEN ds2.ItemNumber = 1 THEN ds2.Item ELSE NULL...
August 5, 2015 at 8:46 am
Use the DelimitedSplit8K function (found on this site, at the "Splitting Delimited Strings" link in my signature) to split this string on the spaces.
Then use this query to get the...
August 5, 2015 at 8:34 am
DiabloZA (8/4/2015)
So Wayne's solution worked perfectly until they changed the requirements a bit, now IN_PUNCH and OUT_PUNCH columns should be blank if there are only ABSNET_HRS in a day,...
August 5, 2015 at 8:25 am
RonKyle (8/4/2015)
advocate keeping all backups (full, diff, tlog) for at least a month
In too many cases the lose of the most current data for the last month would be catastrophic.
I'm...
August 5, 2015 at 7:48 am
Luis Cazares (8/4/2015)
Lynn Pettis (8/4/2015)
SQLRNNR (8/4/2015)
Lynn Pettis (8/4/2015)
SQLRNNR (8/4/2015)
Steve Jones - SSC Editor (8/4/2015)
Is there value in getting the...
August 5, 2015 at 7:39 am
Eirikur Eiriksson (8/5/2015)
Koen Verbeeck (8/5/2015)
August 5, 2015 at 7:33 am
Lynn Pettis (8/4/2015)
SQLRNNR (8/4/2015)
Lynn Pettis (8/4/2015)
SQLRNNR (8/4/2015)
Steve Jones - SSC Editor (8/4/2015)
Is there value in getting the questions/knowledge that...
August 5, 2015 at 7:25 am
dwain.c (8/4/2015)
SQLRNNR (8/4/2015)
WayneS (8/4/2015)
Sean Lange (8/4/2015)
yb751 (8/4/2015)
Sorry just needed two seconds to vent. :crazy:
I'm sure like anything else...
August 5, 2015 at 7:14 am
I know some very highly regarded people that advocate keeping all backups (full, diff, tlog) for at least a month. This will give you the most flexibility and multiple restore...
August 4, 2015 at 2:45 pm
Viewing 15 posts - 316 through 330 (of 5,590 total)