Viewing 15 posts - 7,711 through 7,725 (of 8,760 total)
Duplicate post, answers in the other thread please!
😎
July 26, 2014 at 11:36 pm
scarydba (7/21/2014)
July 26, 2014 at 11:33 pm
It is better to break down the problem into smaller parts using nested case statements, more readable and easier to follow. Here is an example which should be close to...
July 26, 2014 at 10:43 pm
previn1980 (7/26/2014)
So, SSDT is an integrated CLIENT tool in Visual Studio which replaces BIDS for develops etl packages/processes. Is it right?
If so, what's the...
July 26, 2014 at 9:01 pm
GilaMonster (7/26/2014)
July 26, 2014 at 2:02 pm
GilaMonster (7/26/2014)
Eirikur Eiriksson (7/26/2014)
The good thing about SSC is that when I make blunders I am immediately told off:pinch::Whistling:
Didn't take long :blush:
Thanks!!!
😎
July 26, 2014 at 1:55 pm
previn1980 (7/26/2014)
Eirikur Eiriksson (7/26/2014)
First of all, welcome to the forum. SQL Server 2012 has a new approach to the Business Intelligence via the Data Tools, look for SSDT instead of...
July 26, 2014 at 12:41 pm
previn1980 (7/26/2014)
I want use for practice and learning purpose the SQL Server Integration Services ETL tool and Business Intelligence Developement Studio to builds/develop packages/etl processes.
What I want ask...
July 26, 2014 at 11:38 am
Lynn Pettis (7/26/2014)
July 26, 2014 at 10:57 am
smtzac (7/26/2014)
July 26, 2014 at 6:01 am
Here is a very efficient Window Function method, one scan of each table.
😎
USE tempdb;
GO
DECLARE @Employee TABLE (EmployeeID INT, EmployeeName VARCHAR (100), EmployeeDOB DATE)
INSERT @Employee VALUES (101, 'James Bond', '07/07/1945'), (102,...
July 26, 2014 at 5:52 am
Duplicate post, answer to this one please.
😎
July 26, 2014 at 5:10 am
pietlinden (7/25/2014)
If you post proper CREATE TABLE scripts and INSERT scripts to populate your table(s), you will probably get an answer...
10 minutes preparing the data sample, 1 minute writing the...
July 26, 2014 at 4:42 am
Here is a Window function running total example, performs quite nicely;-)
😎
USE tempdb;
GO
create table #current(acctNum int,
dates date,
transtype char(10),
amt INT
)
insert into #current(acctNum, dates, transtype, amt)
values (11,'7/1/2014','debit',1),
(11,'7/2/2014','debit',3),
(12,'7/3/2014','credit',5)
create table #balance (acctNum int,
AsOfDate date,
balance INT
)
insert...
July 26, 2014 at 4:03 am
Koen Verbeeck (7/26/2014)
Eirikur Eiriksson (7/26/2014)
Koen Verbeeck (7/26/2014)
Sean Lange (7/25/2014)
Eirikur Eiriksson (7/25/2014)
Sean Lange (7/25/2014)
Eirikur Eiriksson (7/25/2014)
Jeff Moden (7/25/2014)
Sean Lange (7/25/2014)
July 26, 2014 at 3:14 am
Viewing 15 posts - 7,711 through 7,725 (of 8,760 total)