Viewing 15 posts - 1,396 through 1,410 (of 9,643 total)
Okay, so you want to divide a single row into multiple rows based on the max quantity a single row should contain, 30 in your case. That's an interesting problem...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 29, 2013 at 12:04 pm
I don't know what you want to divide by. Do you want to total the Quant column and then divide by a count of rows to get an...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 29, 2013 at 11:13 am
I think this will meet your requirements based on the information you provided.
WITH tests
AS (
...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 29, 2013 at 11:11 am
Lynn Pettis (5/29/2013)
CheeseheadDBA (5/29/2013)
I have a question I hope the community can help me with. I have a query that is running against a legacy system. I...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 29, 2013 at 10:28 am
Sounds like that is at least part of the problem. Are you allowed to do any maintenance on the database?
You should also check the auto update statistics setting on...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 29, 2013 at 9:37 am
deandvorak (5/28/2013)
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 29, 2013 at 7:06 am
Did you update statistics after upgrading the database?
4000 rows shouldn't take 4-6 hours to import even with RBAR.
Can you share schema and queries?
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 28, 2013 at 11:18 am
Okay. Here's one way to do it:
Data Flow that transfers/processes the data -> On Success (using default settings this would mean all rows in your Source have been successfully...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 28, 2013 at 11:11 am
A named instance on a windows server is technically not the local SQL Server instance. A local SQL Server instance can be connected to from the windows server by...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 28, 2013 at 11:06 am
Can you explain more about what you mean by process the json string? Are you parsing the string to populate multiple columns?
Is the source table in the same database...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 28, 2013 at 8:55 am
No you cannot avoid making the change. The SQL Server Destination only works if the destination is on the same server as the SSIS server. From BOL:
The SQL...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 28, 2013 at 8:47 am
Santosh Bala (5/27/2013)
I want to clear the records and also need to reset the identity.. Truncate table does not help... Please suggest for other alternatives...
Santosh,
This has nothing to do with...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 28, 2013 at 7:17 am
You need to change the column id parameter to the one you need.
SELECT
*
FROM
sys.trace_columns AS TC
WHERE
name LIKE...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 15, 2013 at 10:40 am
Sounds like either your mapping is incorrect or the CSV isn't right. Without seeing the package and the CSV file hard to say for sure.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 15, 2013 at 10:34 am
SET STATISTICS XML ON;
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 15, 2013 at 10:20 am
Viewing 15 posts - 1,396 through 1,410 (of 9,643 total)