Viewing 15 posts - 2,431 through 2,445 (of 11,678 total)
ps_vbdev (6/30/2014)
I was actual reading about these but was not sure if i was on the correct path. In my case would i have a product dimension of granularity...
June 30, 2014 at 6:32 am
1. Yes, 1,9M rows is quite a lot for a dimension table (especially if you are going tenfold in the US). If you are going to use SCD type 2,...
June 30, 2014 at 5:38 am
Replace the NOT IN with a LEFT OUTER JOIN and filter on NULL values.
June 30, 2014 at 4:56 am
kapil_kk (6/30/2014)
Koen Verbeeck (6/30/2014)
kapil_kk (6/30/2014)
only SELECTIt works fine here.
CREATE PROC dbo.MyTestProc AS
SELECT 1 AS Test;
GO
DECLARE @cnt INT;
EXEC dbo.MyTestProc;
SET @cnt = @@ROWCOUNT;
SELECT @cnt;
Does it make any impact if I used SET...
June 30, 2014 at 4:55 am
ramrajan (6/30/2014)
the objective is to replace the NOT in with some joins
OK, so why don't you?
June 30, 2014 at 4:43 am
What's the problem? Performance? Try replacing the NOT IN with NOT EXISTS.
edit: any special reason the query is full with "WITH (NOLOCK)"?
June 30, 2014 at 4:37 am
kapil_kk (6/30/2014)
only SELECT
It works fine here.
CREATE PROC dbo.MyTestProc AS
SELECT 1 AS Test;
GO
DECLARE @cnt INT;
EXEC dbo.MyTestProc;
SET @cnt = @@ROWCOUNT;
SELECT @cnt;
June 30, 2014 at 4:17 am
EdVassie (6/30/2014)
How about SSIS 2012, where everything in the project deployment model is stored inside the SSISDB database? Can SSIS be clustered in that case?
If you are certain that there...
June 30, 2014 at 4:04 am
Depends on the age of the person that asks.
From old to young(er):
* something with computers
* something with databases
* reporting on top of databases
* business intelligence (data manipulation and visualization if...
June 30, 2014 at 3:51 am
What does the stored procedure do? Insert, update, delete, select?
June 30, 2014 at 3:48 am
EdVassie (6/30/2014)
June 30, 2014 at 3:47 am
Lynn Pettis (6/29/2014)
Koen Verbeeck (6/29/2014)
Lynn Pettis (6/28/2014)
June 29, 2014 at 10:04 am
Lynn Pettis (6/28/2014)
And the...
June 29, 2014 at 9:30 am
Evil Kraig F (6/27/2014)
Eirikur Eiriksson (6/27/2014)
The Dixie Flatline (6/27/2014)
Grant Fritchey (6/27/2014)
Koen Verbeeck (6/27/2014)
Grant Fritchey (6/27/2014)
June 29, 2014 at 9:29 am
Viewing 15 posts - 2,431 through 2,445 (of 11,678 total)