Forum Replies Created

Viewing 15 posts - 181 through 195 (of 381 total)

  • RE: Very Simple Batch INSERT from IF MATCH

    You don't tell us what exactly you are trying to do:  insert records from a table, update records base on values.  The solution is probably very similar, but it is...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: DTS help

    There are so many things to this.  I would probably take a day to put it together. I have done similar things in different projects, but not all in the order you...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Returning Stored Proc Output Parameter to DTS

    You are going to need to use an ado.command object with a parameter of type output.  You will need to pass in a connection string (or hard code it).  Do...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Returning Stored Proc Output Parameter to DTS

    What this discusses is getting the data into a global variable from the output parameter of a stored procedure. http://www.sqldts.com/234.aspx

    From there you can refer to the global variable in...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: DTS help

    Before I dig in, let me make sure I understand your problem.  I think that this can be done.

    How do you get this file?  Is there a folder that contains...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Returning Stored Proc Output Parameter to DTS

    Try this:

    http://www.sqldts.com/234.aspx

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Getting Access data into SQL server

    If it is the database password, you need a different element try:

    Database Password=MyDbPassword;

    rather than pwd=MyDbPassword

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Cursor needed to relate different records?

    This will also work:

    Select s.EventID, Datediff(s,s.EventDatetime,e.EventDatetime)as seconds, s.MachineID, s.EventType,

    case when

    (Select emt.EventType from

    (select Max(em.EventID) MaxEventID from  #GPSEvents em

    where em.EventID <= s.EventID

      and EventType in (4,5)

      and em.MachineID = s.MachineID)...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Cursor needed to relate different records?

    I'm not clear what the columns and rows represent.  I think that a list of rows that exemplify what you are wanting (with columns labeled) with the expected output would...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Parsing DTS globalvariable recordset...

    I think that I understand what you are trying to do.

    You need an activex script that reads one record from the recordset and sets up other tasks based on that...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Will I be bloced?

    I don't believe that there will be any blocking, but I can't be sure.  I believe that SQL Server will get row level locks and will let you insert. I...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: MCTS 70-431

    I found the test to be somewhat challenging.  I have listened to a lot about SQL 2005 and have occasionally used the tools.  But I'm still working primarily in SQL...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Getting Access data into SQL server

    Someone please correct me if I am wrong, but after trying to do what you stated, I was told that the Access database has to be on to server in...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Moving tables with DTS

    Also, make sure that there is no maximum file size for the log file.

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Access databases -- where are they hiding? .....

    I can't think of any way to do this other than brute force.  You need a list of computers on your network.  You need a user that is in each...

    Russel Loski, MCSE Business Intelligence, Data Platform

Viewing 15 posts - 181 through 195 (of 381 total)