Viewing 15 posts - 4,681 through 4,695 (of 8,753 total)
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
Jeff Moden (8/16/2015)
August 16, 2015 at 8:35 am
DiabloZA (8/16/2015)
Hi Eirikur Eiriksson,Yes, this is what I needed.
You are awesome and thank you very much for the quick help.
Regards,
DZA
Thanks for the feedback and you are most welcome.
😎
August 16, 2015 at 5:48 am
ErikMN (8/14/2015)
August 16, 2015 at 1:37 am
ManiDBLover (8/15/2015)
I have a requirement to Insert Column 1 and Column 2 based on below condition only. Looking for a Store procedure or query
Condition : Allow Insert when...
August 16, 2015 at 1:09 am
Quick suggestion
😎
USE tempdb;
GO
SET NOCOUNT ON;
GO
;WITH SampleData (PERSON, STARTDATE, ENDDATE, INPUNCH, OUTPUNCH, HOURS,PAYCODE) AS
(
SELECT 1125,'08/11/2015','08/11/2015','08:00', '12:00',4.0, 'REGULAR'
UNION ALL SELECT 1125,'08/11/2015','08/11/2015','13:00', '17:00',4.0, 'SICK'
...
August 15, 2015 at 10:42 pm
mtlsql (8/14/2015)
I have to generate an XML document that matches the following customer specification.... This is our customer's specification, so I have no control over it.
Do you have a schema...
August 15, 2015 at 2:55 am
Here is one way of doing this, maybe not the most efficient but it works.
The method is almost identical to what Chris posted before and works with the sample...
August 15, 2015 at 1:57 am
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:, so...
August 14, 2015 at 6:46 pm
Viewing 15 posts - 4,681 through 4,695 (of 8,753 total)