Viewing 15 posts - 16 through 30 (of 119 total)
Scott, the Transactions table is the parent and ID is its primary key and clustered index. ID is the foreign key in TransactionDetails pointing to Transactions so it is...
January 30, 2015 at 1:10 pm
Excellent. That looks just right. Thanks!
January 7, 2015 at 8:01 am
Exactly what I needed. Simple and effective. Thanks!
December 10, 2014 at 7:02 am
Thanks Keith. I watched Kendra's videos. Good stuff. I will work on implementing this solution.
January 9, 2014 at 1:45 pm
I did go ahead and try this with SSIS. I think I realized the answer to my problem. There is no such thing as the null value in...
December 12, 2013 at 12:29 pm
Understood. I won't add any more requirements.
The table:
CREATE TABLE table_1(
[Curr_date] [datetime] NULL,
[Action] [char](15) NULL,
[Duration] [float] NULL
)
Some data:
INSERT INTO Table_1
(Curr_date,Action,Duration)
SELECT 'Mar 29 2013 7:05AM','SignOn ...
March 29, 2013 at 11:14 am
I want to push my luck and add one more wrinkle. Say the Curr_Date column is DATETIME and the output of the MyAverage CTE express is grouped by HourOfDay...
March 29, 2013 at 9:40 am
That's nice and elegant. Thanks!
Starting a sql statement with WITH is new to me. I will have to look into that closer but it works great.
March 29, 2013 at 7:58 am
Thanks for that thought. I do already have a final step in the SSIS job that deletes these temp files. My problem was, while the job ran, the...
September 5, 2012 at 8:41 am
This is resolved. Someone suggested I simply logon to the server with the account that runs SQL, open IE, and change the folder for Temp Internet Files to a...
September 5, 2012 at 8:10 am
That worked like a charm. I logged on to the server with the SQL process account and changed the IE cache folder to a larger drive. Thanks for...
September 5, 2012 at 8:06 am
Thanks. I will be trying this. Actually I think I won't need that article's Solution 1 or Solution 2. I can logon to the server with the...
September 4, 2012 at 1:10 pm
Thanks for this article. It may be a while before my company is ready to use AO groups but I will definitely refer to your article when that time...
August 28, 2012 at 1:26 pm
Thanks for the response. Yes, the FTP task within the SSIS package writes the temp files to the account's IE temp folder. I do not know why the...
August 21, 2012 at 7:52 am
Viewing 15 posts - 16 through 30 (of 119 total)