Viewing 15 posts - 3,121 through 3,135 (of 7,168 total)
tim_harkin (9/21/2012)
opc.three (9/19/2012)
Jeff Moden (9/18/2012)
September 21, 2012 at 7:03 am
Jeff Moden (9/21/2012)
opc.three (9/20/2012)
Jeff Moden (9/20/2012)
opc.three (9/20/2012)
September 21, 2012 at 7:00 am
The info we've brought out on the thread so far does not compute. There is some other variable affecting the behavior that is missing. I'll step aside and see if...
September 21, 2012 at 6:55 am
How are you connecting to the DB instance, with Windows Auth or SQL Auth?
And just to confirm, you're opening SSMS and BIDS on the same machine using the same creds...
September 20, 2012 at 10:39 pm
I see "for 64-bit" and "Provider cannot be found." in the error message. It could be that the OLE DB provider teh package is trying to use is 32-bit only....
September 20, 2012 at 5:08 pm
Adding sample package (SQL 2008 R2) as attachment in case there is interest.
September 20, 2012 at 4:33 pm
Jeff Moden (9/20/2012)
opc.three (9/20/2012)
September 20, 2012 at 4:26 pm
only4mithunc (9/7/2012)
But here in our case we are not sure of the out put column names. Based on the parameters what we pass to the SP, the out put...
September 20, 2012 at 4:07 pm
Jeff Moden (9/20/2012)
opc.three (9/20/2012)
September 20, 2012 at 3:41 pm
September 20, 2012 at 2:59 pm
Measure total server memory used by SQL Server:
SELECT cntr_value / 1024.0 AS TotalServerMemoryMB
FROM sys.dm_os_performance_counters
WHERE counter_name = 'Total Server Memory (KB)';
For physical (if VM host is stealing) and...
September 20, 2012 at 2:57 pm
What is running your SSIS package? A job?
September 20, 2012 at 2:50 pm
Extended Events session that writes to a file? The volume should be low enough that you can get away with later writing the file to a table or load up...
September 20, 2012 at 2:45 pm
stevro (9/20/2012)
Where did you find this? I don't think that is true at all. The rollback would remove the table.
begin transaction
select 5 as Col1 into SomeSillyTable
rollback transaction
select * from SomeSillyTable
Yes,...
September 20, 2012 at 2:33 pm
Viewing 15 posts - 3,121 through 3,135 (of 7,168 total)