Forum Replies Created

Viewing 15 posts - 13,186 through 13,200 (of 13,838 total)

  • RE: Please help me

    Hi - this is not straightforward, so I'm not surprised you are having trouble.

    Would it be sufficient to perform the following checks:

    1) That the length of the string is 20...

  • RE: Question of the Day for 02 Dec 2005

    What's a 'vatch'?

  • RE: Failed to copy objects from SQL server to SQL Server

    You're trying to export all data and all objects?  Why not just backup/restore?

  • RE: Conditional Update Quandary

    Hi Vladan - it's OK, I think Jeff's having a bad day.  I am native English and his comments were a little bit harsh - but I think we understand...

  • RE: Updating table from one database to another

    Hi David - looks like you've cracked it.

    I would suggest adding a WHERE clause too:

    UPDATE    Subset

    SET              Subset.Leadengineer = Contact2.ULEADENGIN

    FROM         heat2.Subset Subset INNER JOIN

                          Goldmine.dbo.Contact2 Contact2 ON Contact2.Accountno = Subset.SupportInfo

    WHERE Subset.Leadengineer <>...

  • RE: How to return values who have more than 2 decimal

    Kenneth is correct about FLOATs.  But if EDEB is DECIMAL, the following WHERE clause should select only those with >2 d.p.'s.

    where year(data)=2003 and round(edeb, 2) <> edeb

  • RE: VB Error while parsing is OK...

    Why not just write a stored procedure and use that?  Usually no need to use DTS if all of your data is within SQL Server.

    -- edit.  I misread your original...

  • RE: VB Error while parsing is OK...

    If there is no DTSSource column to put your GV into, DTS does not know where to put it - which may be stating the bleedin' obvious.  That is why...

  • RE: Conditional Update Quandary

    Jeff, I do not envy you that problem!

    Does your solution have to remain entirely within SQL Server?  Might the client accept a DLL which you can call as an extended...

  • RE: VB Error while parsing is OK...

    From the error message, this does not look like a problem with your GV.  You could check this by replacing the field4 line with

    msgbox DTSGlobalVariables("g_RunNr").Value

    and then run the step...

  • RE: database rollback

    Actually, I should have left this thread well alone

    But the original post contains two questions - that is how I came up with my...

  • RE: database rollback

    Hi Mike

    I think that your answer should start with 'No' rather than 'Yes'

    --edit-- I think you were answering question 2 - I was...

  • RE: Saving to a csv file

    Semi-automatically.  Select Tools/Options/Results and set 'Results to File' as the 'Default Results Target' and set the Results output format to CSV.

    But you'll have to supply the filename and path.

    If you...

  • RE: Excel Column widths larger than 255....

    Although the maximum column width in Excel is 255 characters, that is not the maximum length of data that can be stored in a column, which is 32,767 characters.

    DTS will...

  • RE: Creating tables using Management Studio

    Can you post the script that generated the error?

Viewing 15 posts - 13,186 through 13,200 (of 13,838 total)