Viewing 15 posts - 4,681 through 4,695 (of 8,761 total)
Sean Lange (8/19/2015)
August 19, 2015 at 10:08 am
Ed Wagner (8/19/2015)
djj (8/19/2015)
Eirikur Eiriksson (8/18/2015)
DonlSimpson (8/18/2015)
Revenant (8/18/2015)
whereisSQL? (8/18/2015)
TomThomson (8/18/2015)
Ed Wagner (8/18/2015)
SQLRNNR (8/18/2015)
Ed Wagner (8/18/2015)
ChrisM@Work (8/18/2015)
djj (8/18/2015)
Ed Wagner (8/17/2015)
Luis Cazares (8/17/2015)
whereisSQL? (8/17/2015)
Eirikur Eiriksson (8/17/2015)
Ed Wagner (8/17/2015)
eccentricDBA (8/17/2015)
whereisSQL? (8/17/2015)
DonlSimpson (8/17/2015)
OptimizerCost-based
low-cost provider...
August 19, 2015 at 5:44 am
DonlSimpson (8/18/2015)
Revenant (8/18/2015)
whereisSQL? (8/18/2015)
TomThomson (8/18/2015)
Ed Wagner (8/18/2015)
SQLRNNR (8/18/2015)
Ed Wagner (8/18/2015)
ChrisM@Work (8/18/2015)
djj (8/18/2015)
Ed Wagner (8/17/2015)
Luis Cazares (8/17/2015)
whereisSQL? (8/17/2015)
Eirikur Eiriksson (8/17/2015)
Ed Wagner (8/17/2015)
eccentricDBA (8/17/2015)
whereisSQL? (8/17/2015)
DonlSimpson (8/17/2015)
OptimizerCost-based
low-cost provider strategy
Low Quality
WYPIWYG
Consultant
Contractor
Temp
Intern
Affairs
Politicians
desk
Resolute
pig-headed
Trump
Hair
Ball
Bearing
August 18, 2015 at 10:58 pm
sgmunson (8/18/2015)
It appears that what's needed is a query that detects differences between the Steps table and the Processes table. How about this rather simplistic one?
Simple solution but not...
August 18, 2015 at 2:50 pm
drew.allen (8/18/2015)
Why do you use a CROSS APPLY here? You can do the same thing with an INNER JOIN, and I think that it's easier to follow.
You are right,...
August 18, 2015 at 2:44 pm
ShuaibV (8/18/2015)
Can you please let me know how we can replace the multiple values in a single select statement? I have to build the output based on values stored...
August 18, 2015 at 11:43 am
TomThomson (8/18/2015)
Jeff Moden (8/14/2015)
Eirikur Eiriksson (8/14/2015)
Jeff Moden (8/14/2015)
Heh... since it's for XML...
Trying to put my finger on this, just cannot find which kind of XML phobia is plaguing you Jeff:Whistling:,...
August 18, 2015 at 11:27 am
Does creating the snap create a full bak or full mdf and ldf files? Im concerned with space - it's a large DB
No it initially creates a data file...
August 18, 2015 at 6:55 am
Quick suggestion
😎
USE tempdb;
GO
SET NOCOUNT ON;
declare @Process table(ProcessId int identity(1,1) primary key,ProcessName varchar(100),ParentStep int, ChildStep int);
Insert into @Process(ProcessName,ParentStep,ChildStep)
select 'Process1',1,2 union all
select 'Process2',1,3 union all
select 'Process3',1,6 union all
select 'Process4',4,2 union all
select 'Process5',4,5;...
August 18, 2015 at 5:51 am
krypto69 (8/17/2015)
Never had a need to use snapshots before.
I have a dev SQL2014 server. My devs would like to take a DB snapshot then run there code, then use that...
August 17, 2015 at 11:09 pm
August 17, 2015 at 1:36 pm
Ed Wagner (8/17/2015)
eccentricDBA (8/17/2015)
whereisSQL? (8/17/2015)
DonlSimpson (8/17/2015)
OptimizerCost-based
low-cost provider strategy
Low Quality
WYPIWYG
August 17, 2015 at 12:20 pm
cory.bullard76 (8/17/2015)
,max(case when patins.rank = 1.0 then CLAIMS.[TOTALPAID] else '' end)
TotalPaid is a field that contains, for example, 445.45
The...
August 17, 2015 at 11:14 am
ilovedata (8/16/2015)
I will have...
August 17, 2015 at 12:29 am
Jeff Moden (8/16/2015)
Eirikur Eiriksson (8/16/2015)
Jeff Moden (8/16/2015)
August 16, 2015 at 12:08 pm
Viewing 15 posts - 4,681 through 4,695 (of 8,761 total)