Viewing 15 posts - 1,036 through 1,050 (of 1,243 total)
GilaMonster (6/2/2014)
As for subqueries vs joins, depends on where the subqueries are,...
June 2, 2014 at 5:49 am
That's kind of what I meant, I'm not sure what I'm looking for! However, I don't actually have permission to run those. I'm part of the BI team...
June 2, 2014 at 5:28 am
create table #OppHarSales1
(
BillNoint
,BillDatedate
,PatTypevarchar(8)
)
create table #OppHarSales2
(
ItemCodevarchar(6)
,Qtyint
,Priceint
,BillNoint
)
create table #MasterItem
(
ItemCodevarchar(6)
,Itemnamevarchar(25)
)
insert into #OppHarSales1
select 1,'2013-05-01', 'OP'union all
select 2,'2013-09-19', 'OP'union all
select 3,'2013-11-02', 'PHARMACY'union all
select 4,'2014-02-06', 'OP'union all
select 5,'2014-05-27', 'PHARMACY'
insert into #OppHarSales2
select 'GN0510',1,9,1 union all
select 'GN0510',1,9,2...
May 28, 2014 at 2:29 am
GilaMonster (5/27/2014)
I have an iPad which serves the tablet role just fine. My requirements for a laptop include being...
May 27, 2014 at 2:44 am
Robert Sterbal-482516 (5/25/2014)
Am I spoiled by the fact that I'm willing to lug my digital SLR virtually everywhere?
My wife's the same. I've got a smaller, lighter mid-range compact that...
May 27, 2014 at 1:48 am
Thanks for the replies but I think I've now got more questions than I had before. What's the best way of checking that clustering, mirroring and replication are set...
May 27, 2014 at 1:15 am
TomThomson (5/24/2014)
SQLRNNR (5/23/2014)
whereisSQL? (5/23/2014)
TomThomson (5/23/2014)
Revenant (5/23/2014)
Ed Wagner (5/23/2014)
SQLRNNR (5/23/2014)
Ed Wagner (5/23/2014)
crookj (5/23/2014)
Ed Wagner (5/23/2014)
BWFC (5/23/2014)
RingRule
Decree
Dictate
PotatoHead
Toy
Story
Board
Chalk
ongle
scratch
Fever
May 27, 2014 at 1:10 am
Steve Jones - SSC Editor (5/23/2014)
BWFC (5/23/2014)
May 23, 2014 at 1:36 pm
Ed Wagner (5/23/2014)
Koen Verbeeck (5/23/2014)
BWFC (5/23/2014)
May 23, 2014 at 5:42 am
Does anybody else feel a bit frustrated when there is no response from the OP after you post an answer to a question? I know that this is a...
May 23, 2014 at 2:09 am
Try this
create table #Parent
(
PKint primary key not null,
Descrvarchar(10) not null,
Reference_PKint null
)
insert into #Parent
select 1, 'Gautham',nullunion all
select 2, 'Harsha',nullunion all
select 3, 'Kamal',1union...
May 21, 2014 at 3:36 am
Viewing 15 posts - 1,036 through 1,050 (of 1,243 total)