Viewing 15 posts - 301 through 315 (of 1,241 total)
November 18, 2017 at 12:56 am
In your data set definition >
Something like this will help get you going : This just to illustrate the concept. I am using an older version of the adventure...
November 16, 2017 at 10:32 pm
I suppose that doing this in the following fashion
DECLARE @commandText VARCHAR(8000)=''
SELECT @commandText = @commandText +char(10) +char(13)+
'EXEC master.sys.sp_addmessage @msgnum = ' + CAST(message_id+10...
November 16, 2017 at 9:49 pm
Just to cross this item out, you are sure that your 'O' is not a'0' instead?
November 9, 2017 at 2:53 pm
In my dimDate table I like to have a DATE type to represent the weekStart, monthStart, quarterStart, etc...
With this design in place I can easily handle such a...
November 3, 2017 at 4:00 pm
Can you see my previous post and let me know if this is what you are trying to do? It appears you are, and from what I see you are...
November 3, 2017 at 3:43 pm
Referring to figures 7 and 8 ... I also wonder what someone would expect from the use of the NOLOCK operator. It is not an optimizing technique.
November 3, 2017 at 2:24 am
I definitely think there is a language barrier here as I am still hung up on
I have an assignment, to Purging data, with conditions:
November 3, 2017 at 2:02 am
Use a CTE to filter your target table.
Is the CTE able to make use of an appropriate index in this case? I am guessing yes...
November 3, 2017 at 1:54 am
I cant imagine 70 databases/iterations would be a burden on a cursor.
I have not tested this but something looking like >
use master
go
November 3, 2017 at 1:44 am
Not sure that you need a dynamic sql statement in Ole db source adapter, via a variable. To use something like a date variable I can simply construct my query...
November 2, 2017 at 1:22 pm
Try
CREATE TABLE #CuriousCaseOfSum(val DECIMAL(18,1) NOT NULL)
INSERT INTO #CuriousCaseOfSum(val)
VALUES (1),(2),(3)
DECLARE @var DECIMAL(12,0)=12.6
SELECT @var, Sum(val) , @var+SUM(val)
FROM #CuriousCaseOfSum
DROP TABLE...
August 24, 2017 at 10:28 am
The data element named “date_key” is absurd; a date is a unit of temporal measurement in a key is how a data element is used in a particular...
June 28, 2017 at 1:06 am
col1 int NULL
,col2 int NOT NULL IDENTITY (1,1)
,col3 AS COALESCE (col1, col2) PERSISTED NOT NULL
Take a good look at your...
June 26, 2017 at 2:46 pm
Viewing 15 posts - 301 through 315 (of 1,241 total)