Viewing 15 posts - 4,846 through 4,860 (of 8,761 total)
Quick example of how this can be done, you should be able to work it from there.
😎
USE tempdb;
GO
SET NOCOUNT ON;
GO
IF OBJECT_ID(N'tempdb..#tmp_CustInfo') IS NOT NULL DROP TABLE #tmp_CustInfo;
CREATE TABLE #tmp_CustInfo
(patID varchar(20),
enc_date...
July 29, 2015 at 10:59 pm
Steve Jones - SSC Editor (7/29/2015)
Now?
24 times more Steve:-D
😎
July 29, 2015 at 1:40 pm
SQLRNNR (7/29/2015)
And in breaking news...The thread is about to turn 50,000.
Let the countdown begin.
He he, C350 (50.000 in 0x), my favorite engine ever since the '67 Camaro:-D
😎
July 29, 2015 at 1:22 pm
Lynn Pettis (7/29/2015)
July 29, 2015 at 1:04 pm
SQLRNNR (7/29/2015)
WayneS (7/29/2015)
BL0B_EATER (7/29/2015)
WayneS (7/28/2015)
I love it when I learn something in an area where I thought I knew it all.You have made me very curious. What was the subject?
Table...
July 29, 2015 at 7:51 am
SQLRNNR (7/28/2015)
eccentricDBA (7/28/2015)
Generation XGeneration Entitled
Demanding
July 29, 2015 at 12:55 am
Quick thought, you aren't giving the optimizer much to go on here, using a table value function to populate a table variable which by the way doesn't have any statistics...
July 29, 2015 at 12:13 am
Quick fix adding the "@" to the attribute names;-)
😎
set@cropXML.modify('
delete (/Crop/Varieties/Variety[@Id=sql:variable("@varietyid")]/SoilTypes/SoilType/YieldGoals/YieldGoal[@Id=sql:variable("@yieldid")]/Stages/Stage[@Id=sql:variable("@StageId")])[1]
');
July 28, 2015 at 10:14 pm
SQLRNNR (7/28/2015)
Luis Cazares (7/28/2015)
eccentricDBA (7/28/2015)
Ray K (7/28/2015)
DonlSimpson (7/28/2015)
SQLRNNR (7/28/2015)
TomThomson (7/27/2015)
SQLRNNR (7/27/2015)
Revenant (7/27/2015)
Ray K (7/27/2015)
DonlSimpson (7/26/2015)
TomThomson (7/25/2015)
SQLRNNR (7/25/2015)
outre-merultramar
Montreal
Expos
Nationals
GNATS
Bites
Bytes
Reality
fantasy
Final
Countdown
T - 10
Parachute
July 28, 2015 at 1:18 pm
Given that humans have taken 200.000 years to become as stupid as they are and that computers do things much faster than humans, we (humans) should be afraid, very afraid:-D
😎
July 28, 2015 at 1:15 pm
r.dilliprasad (7/28/2015)
please help on this!!!
I think you have to rephrase this question, online analytical processing/olap is an approach to mda or multi dimensional analytics, which dimensional modelling is an integral...
July 28, 2015 at 12:19 pm
thbaig (7/28/2015)
thank you Eirikur Eiriksson
You are very welcome!
😎
I just improved the code sample to demonstrate that query will use index seek if the proper index is in place.
July 28, 2015 at 10:29 am
thbaig (7/28/2015)
I need to select records in column that start with '% ' -- %space e.g. column A = % mytest
I tried select column name with like operator but it...
July 28, 2015 at 10:19 am
GilaMonster (7/28/2015)
Eirikur Eiriksson (7/27/2015)
Although "theoretically" this is right, one cannot endorse the use of @@ROWCOUNT in that way, too many gaps and exceptions.😎
What gaps and exceptions, other than a trigger?
Simple...
July 28, 2015 at 6:36 am
Brandie Tarvin (7/27/2015)
Eirikur Eiriksson (7/27/2015)
Brandie Tarvin (7/27/2015)
SQLRNNR (7/27/2015)
Brandie Tarvin (7/27/2015)
Pseudo-simple
Wow. Even on The Thread I am having the learning of the stuff. I've never heard of this until today.
Thanks for...
July 27, 2015 at 4:16 pm
Viewing 15 posts - 4,846 through 4,860 (of 8,761 total)