Viewing 15 posts - 1,396 through 1,410 (of 9,641 total)
I think this will meet your requirements based on the information you provided.
WITH tests
AS (
...
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...
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...
May 29, 2013 at 9:37 am
deandvorak (5/28/2013)
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?
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...
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...
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...
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...
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...
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...
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.
May 15, 2013 at 10:34 am
Yeah that totally sucks, because even if you have a process that archives off the older trace files you'd probably be missing some in this case.
May 15, 2013 at 7:00 am
Reading the link Eugene provided will definitely help get better answers but here's something that I hope will help:
Select
Count(I.investorid) as investors,
F.fundID
From
...
May 15, 2013 at 6:54 am
Viewing 15 posts - 1,396 through 1,410 (of 9,641 total)