Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by DBAchick

  1. DBAchick

    Force Insert as Last Record

    Basically, I need to control the position of a record I am inserted. I have created TableX with a single column (no index) varchar(8000). Main Stored Procedure calls Stored Procedure 1 which inserts a 'header record' in TableX. The calls Stored Procedure 2 which queries several other...
  2. DBAchick

    Auto 'refresh' of tranformations

    Summary of what my DTS Package accomplishes: A stored procedure is executed to populate a table in the database with the data I need using an execute sql task. Using a transform data task, I tranform the data to a destination text file. All of these task 'values' are set using the dynamic...
  3. DBAchick

    DontExecuteTask in WorkFlow Properties

    I have an execute process task in my DTS Package that I only want executed if a Global Variable value = Y. Here is my code: Function Main() ' Check global variable from package If DTSGlobalVariables("sZipFlag").Value = "Y" Then Main = DTSStepScriptResult_ExecuteTask Else...
  4. DBAchick

    Multi Server Job -- What Server am I on?

    I have created a job that will be executed as a Multi-Server job. The first step is an ActiveX Script in which I need to query the sysdatabases table in order to get a recordset of the databases on that server. In order to run the Select statement, I am creating a connection string that...
  5. DBAchick

    zip a file: task in a DTS package

    I would like to be able to zip a file using WinZip or PKZip as step one of my DTS package. I assume I will need to do this in an active X task as it will require a commmand line call to the winzip or pkzip.exe. Am I headed down the right path or is this beyond the capabilities of DTS? Any...
  6. DBAchick

    Excel VBA references not sticking

    The references that are set in my Excel spreadsheet are: Visual Basic For Applications (C:\Program Files\Common Files\MicrosoftShared\...) Microsoft Excel 9.0 Object Library (C:\Program Files\Microsoft Office\...) OLE Automation (C:\Windows\System32...) Microsoft Office 9.0...
  7. DBAchick

    Excel VBA references not sticking

    I created an excel spreadsheet that performs some email tasks using vba for applications. I set the references in the VB editor, but when I send the spreadsheet to someone else, they receive errors until we set the references on THEIR machine as well. Is there a way to 'complile' the...
  8. DBAchick

    Adding one month to a date to get the whole year

    I searched the forum, but could not find this issue addressed. Access 2000. I have a query in which one field is a date. I have parsed out MyMonth: MyMonth = Month([MyDate]) and now want to perform a function on MyMonth to get the month 6 months from now, My6Month. Example: If MyDate is...
  9. DBAchick

    Embed Word doc in Excel spreadsheet

    Info: Running Word and Excel 2000 but saving both files as 97 compatible. I have seen this done in Word, but not Excel. I want to create a spreadsheet that has a Word Doc 'embedded' in it. I have created the spreadsheet that will be sent out to various people, now I want the document...
  10. DBAchick

    DTS Package - Rename destination .txt file.

    Excellent suggestions! Thank you both for your assistance!
  11. DBAchick

    DTS Package - Rename destination .txt file.

    I have created a DTS package that makes one connection and creats 7 .txt files based on different select statements. Each .txt destination file needs to have a path and file name assigned (General Tab on Properties of Text Destination.) I want to be able to manipulate (before or after...
  12. DBAchick

    ActiveX script to change .txt file name

    I need to write an ActiveX Script that will be executed via the DTS utility in SQL Server 2000. I create 7 files using DTS but the name of the file is not a variable so it is hard coded. I would like to run a quick script after the files are created to concatenate the date to the end of the...
  13. DBAchick

    Hiding checkboxes in Excel

    Thanks for you input Skip. After I started to 'click around' I found an option under format control that allows you to either move and/or size the control with the cell it floats above. I checked move and size with cell, and viola! they disappear when I collapse the group. Guess I should have...
  14. DBAchick

    Hiding checkboxes in Excel

    I have created a spreadsheet with a few checkboxes and radio buttons. I have grouped the cells that lie underneath the objects, but when I collapse the group (click the little "-" next to the row numbers), the radio buttons and check boxes remain on top and visible. Is there a way...
  15. DBAchick

    event name

    Is there a way to find the exact name of an event - I have a label with a click event - I want to know the name of the event i.e. if the label is label10 and the event is a click event - can I find the string label10_onclick in any property

Part and Inventory Search

Back
Top