Viewing 15 posts - 9,736 through 9,750 (of 13,880 total)
Koen Verbeeck (7/16/2013)
So you...
July 16, 2013 at 6:08 am
ssurekha2000 (7/16/2013)
out of 15 columns from table1 i need to insert 6 columns to table 2
but
if i use
insert...
July 16, 2013 at 12:58 am
Yep, I confirm that your method works for me - I would say that you have a scope issue.
July 15, 2013 at 12:23 pm
Megistal (7/15/2013)
The next component, in the control flow, I've added a breakpoint on the "PreExecute" event and check the locals variables in the debugger.
I've also do the samething a few...
July 15, 2013 at 12:09 pm
Tara-1044200 (7/12/2013)
just so you know my loop iterates almote 50k times, do...
July 15, 2013 at 12:05 pm
May I ask what technique you are using to check the variable's value?
July 15, 2013 at 12:00 pm
Did you generate new IDs for the child packages, or are they exact copies?
(I'm not sure whether it matters, but worth checking.)
July 15, 2013 at 11:53 am
It's been a while, but I seem to remember that you do not need to have the variable listed in ReadWriteVariables if you are using the VariableDispenser methods to read...
July 15, 2013 at 11:50 am
ssurekha2000 (7/15/2013)
[ID] [numeric](18, 0) IDENTITY(1,1) NOT NULL,
[CLENO] [int] NOT NULL CONSTRAINT [DF_DETAILS_CLENO] DEFAULT ((0)),
[Custid] [int] NOT NULL CONSTRAINT [DF_DETAILS_Custid] DEFAULT ((0)),
CONSTRAINT [PK_DETAILS] PRIMARY KEY CLUSTERED...
July 15, 2013 at 3:25 am
ssurekha2000 (7/15/2013)
initally value is balnk.
but i have set the default value when creating the field as 0
i need to increment the max Custid value
but...
July 15, 2013 at 3:11 am
HanShi (7/15/2013)
INSERT INTO table2SELECT FDT1 TODT1 FROM table1
UNION ALL
SELECT FDT2 TODT2 FROM table1
I think you might need to add a comma between the column names ...
July 15, 2013 at 2:59 am
Right - sounds like you have limited rights on that PC. Can you find someone with local admin rights who can do it for you?
July 10, 2013 at 12:55 am
mister.magoo (7/10/2013)
Thanks for taking the time to explain.
NP - I feel like the subject matter expert on this topic after the last few days!
July 10, 2013 at 12:53 am
To fix the problem (for SS2012 only), use the following T-SQL instead:
exec dbo.testProcWithTempTables
with result sets((id int));
July 10, 2013 at 12:52 am
Viewing 15 posts - 9,736 through 9,750 (of 13,880 total)