Viewing 15 posts - 586 through 600 (of 927 total)
danielfountain (5/16/2014)
Eirikur Eiriksson (5/16/2014)
Is there any error handling in SP_LogProc?😎
Nope :crazy:
Thanks anyway.
if the PROC2 is depends on the the successful execution of PROC1 then you need to use
otherwise...
May 16, 2014 at 5:09 am
Koen Verbeeck (5/16/2014)
However you would not like to get the results back in a grid
Anyway, as stated...
May 16, 2014 at 12:40 am
Phil Parkin (5/14/2014)
twin.devil (5/14/2014)
venkat5677 (5/14/2014)
I changed destination table column length to 255 but no luck
What error you get this time? it should not be the same as the earlier one....
May 15, 2014 at 12:11 am
venkat5677 (5/14/2014)
I changed destination table column length to 255 but no luck
What error you get this time? it should not be the same as the earlier one. but if it...
May 14, 2014 at 11:43 pm
mssqlsrv (5/14/2014)
But we are not rebuilding indexes on "table".
Here the schema bound views and its indexes are...
May 14, 2014 at 11:36 pm
Sorry, i just noticed i have replaced your code with mine. This function is also valid, but for single Character only.
Following is the complete code
using System;
using System.Data;
using Microsoft.SqlServer.Dts.Pipeline.Wrapper;
using Microsoft.SqlServer.Dts.Runtime.Wrapper;
using...
May 14, 2014 at 4:39 am
As far as i remember, you actual issue was on ID column not the Name Column
update your code like this:
{if Char.IsNumber(Row.ID)
{
Row.isvalid= true;
}
...
May 14, 2014 at 1:40 am
I just written this as per my understanding
CREATE TABLE #events
(
eventID int,
eventname char(30),
startdate date,
enddate date
)
INSERT INTO #events VALUES (1,'testevent 1','2014-05-02','2014-05-30');
INSERT INTO #events VALUES...
May 12, 2014 at 4:54 am
ganteng1 (5/12/2014)
Hi. I'm not really sure how to better demonstrate this. Basically, I need my field/column names to be dynamic.Thanks
I still cannot understand the context of your situation but the...
May 12, 2014 at 4:33 am
twin.devil (5/12/2014)
Nice question thanks for sharing.
to err is human 🙂
May 12, 2014 at 1:28 am
Share your scenario why you actually need this working, and at which point you need this column? need more understanding.
May 12, 2014 at 12:01 am
When you say column header you mean its name, like to make ColumnName_20140512 something like that ?
May 11, 2014 at 11:41 pm
Nice question ... brought back some nice old memories ... 🙂
Thanks for sharing
May 9, 2014 at 4:30 am
asranantha (5/9/2014)
without chang datatype we need to do this one.
is there some kind of restriction ?
if its a yes then you can place a Script Task, create a Boolean flag...
May 9, 2014 at 4:13 am
Viewing 15 posts - 586 through 600 (of 927 total)