Viewing 15 posts - 121 through 135 (of 381 total)
It fascinates me that managers can drive out their staff and actually get rewarded, when the most valuable asset managers work with is their people. A manager goes...
October 15, 2007 at 5:50 am
Your schema requires more than 10 attributes. Your document has elements.
<ClmCalcDetails LendPayoff="1.00" CLRefund="2.00"
.... with other elements as attributes here ...
></ClmCalcDetails>
September 28, 2007 at 6:04 am
I don't like the font you are using in the posts. It is way too small, which might be ok with another font.
September 27, 2007 at 5:04 am
I constantly have to remind myself that I'm really not the responsible on this issue. If the manager wants to have me do something that someone else can do...
September 27, 2007 at 4:55 am
One of the several reasons that I am a contractor rather than a full time employee is that I want the time for training. I don't trust employers to...
September 25, 2007 at 3:44 am
I'm not certain, but I think you could add a Derived column to your Data Flow.
September 12, 2007 at 10:34 am
Check out http://msdn2.microsoft.com/en-us/library/59x02y99(vs.71).aspx.
You basically need to create a parameter with a Directon of ReturnValue (1 per command, I'm pretty certain).
You are using a dataset here. However, in...
September 12, 2007 at 10:26 am
I had a related problem with a web page.
Some background. At one of my former clients I developed an SSIS package that pulled information entered into a customer service form...
May 29, 2007 at 4:38 am
One major correction!
Replace the following line with something like the second line. All of the non-AID columns and exclude the identity col if you have one (which means you will...
April 19, 2007 at 5:34 am
I don't recognize the statement:
set RS = CreateObject("DistinctRecords.Recordset")
Do you mean ?
set RS = CreateObject("ADO.Recordset")
You would need to open a recordset with the proper connection and command string. I haven't worked...
April 18, 2007 at 7:36 pm
Hopefully someone can come up with a better way to do this.
First, create two temporary table that have the same fields as the original two tables. Copy all of your...
April 18, 2007 at 7:19 pm
You have a tblTest and you are going to run the rest of your DTS package using distinct combinations of x and y that occur in tblTest.
What I would do...
April 18, 2007 at 7:09 pm
I have not used the Ident_Current function, but according to http://msdn2.microsoft.com/en-us/library/aa933217(SQL.80).aspx you pass it the name of the table:
SET @CR_ID=Ident_Current('tblCR_Visit')
I would be nervous that this might return someone...
April 18, 2007 at 10:24 am
There is so much that could go wrong. I need to see your code.
April 18, 2007 at 9:57 am
You could wrap this as CDATA which throws out all formatting (note the <![[CDATA[ closed by ]]>.
declare @dd varchar(300), @doc int
select @dd = '<root ><myelement ><![CDATA[' + char(13) + char(10)...
March 28, 2007 at 4:37 pm
Viewing 15 posts - 121 through 135 (of 381 total)