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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ArtieChoke

    VB program won't terminate after uploading by FTP

    Are you closing the ftp connection? "I think we're all Bozos on this bus!" - Firesign Theatre [jester]
  2. ArtieChoke

    Connection time out error while connecting VB6 to SQL server 2008

    How long does it take for that statement to return in query analyzer (or whatever the 2008 version is called)? "I think we're all Bozos on this bus!" - Firesign Theatre [jester]
  3. ArtieChoke

    Moving PowerCenter repository to another box....

    The server is hard-coded in the repository. You'll need to find the tables that have that and change them. I don't remember off-hand which one's they are - i think they have 'data' in the names. "I think we're all Bozos on this bus!" - Firesign Theatre [jester]
  4. ArtieChoke

    Scheduled session fails, workflow succeeds

    That was gonna be my next suggestion. Glad it works now. BTW, their scheduler is really lame. If you use SQL Server, it's much better to use that job scheduler and use the pmruncmd program to kick off the wf. "I think we're all Bozos on this bus!" - Firesign Theatre [jester]
  5. ArtieChoke

    Scheduled session fails, workflow succeeds

    What operating system - windows or unix? If windows, what account is the service running under? "I think we're all Bozos on this bus!" - Firesign Theatre [jester]
  6. ArtieChoke

    Scheduled session fails, workflow succeeds

    Have you ever run anything successfully in the scheduler? "I think we're all Bozos on this bus!" - Firesign Theatre [jester]
  7. ArtieChoke

    Scheduled session fails, workflow succeeds

    Not if it runs manually. Are you using versioning? And is the the first version? If so, did you check it in? "I think we're all Bozos on this bus!" - Firesign Theatre [jester]
  8. ArtieChoke

    Scheduled session fails, workflow succeeds

    Look at the session log. If there isn't one, then it means either the session or map is invalid. "I think we're all Bozos on this bus!" - Firesign Theatre [jester]
  9. ArtieChoke

    Partition view in Session MAPPING TAB not available

    Did you buy that option? It doesn't come with the standard version. "I think we're all Bozos on this bus!" - Firesign Theatre [jester]
  10. ArtieChoke

    dataset and procedure

    First of all, how is GetZipcodesForDistance defined as a stored procedure? What database? Your definition looks like a subroutine. To assign the results to a dataset, you need to execute the stored procedure in a connection/command object and return the value to the dataset. You don't...
  11. ArtieChoke

    Migrating Data from SQLServer to Oracle

    You can use the integration services (formerly DTS) to move the tables. If you have a lot of tables, maybe there's some 3rd party software that would take care of it. "I think we're all Bozos on this bus!" - Firesign Theatre [jester]
  12. ArtieChoke

    Migrating Data from SQLServer to Oracle

    How many tables are involved? You say you have to use PowerCenter - then you will have to import the source and target tables and make maps to move the data between the servers. What version of sql server are you using? You might be able to do a direct connection between the databases and...
  13. ArtieChoke

    How to open a word .doc from web page?

    Sure. You will need code to do this. You'll have to use javascript on a button or link to open the word doc since you need it to run on the client. The user will need word on their computer. I don't have an example right now, but I can get one tomorrow. "I think we're all Bozos on this bus!" -...
  14. ArtieChoke

    System.ArgumentException: DataGridViewComboBoxCell value is not valid.

    That exception occurs when the value you put in the field containing the combobox isn't a member of the combobox. "I think we're all Bozos on this bus!" - Firesign Theatre [jester]
  15. ArtieChoke

    A bit lost, can anyone point the way?

    Try using a datatable instead of dataset. It has the rows method. "I think we're all Bozos on this bus!" - Firesign Theatre [jester]
  16. ArtieChoke

    A bit lost, can anyone point the way?

    You're doing it fine. Just change the field retrieval to: dsLabelFields.Rows(0).Item("ShipToName") "I think we're all Bozos on this bus!" - Firesign Theatre [jester]
  17. ArtieChoke

    update and insert in the same session

    Yes, you need to use the update transform. Without it, PC thinks it's an insert. The update transform can do updates, inserts and deletes. Set the properties to DD_UPDATE to tell it to do the update. "I think we're all Bozos on this bus!" - Firesign Theatre [jester]
  18. ArtieChoke

    update and insert in the same session

    Do you have an update transformation to the update target? "I think we're all Bozos on this bus!" - Firesign Theatre [jester]
  19. ArtieChoke

    String Trim

    Check out the path class. You can get easily get the name, extension, path, etc. Path.GetFileName(file) will return the file name and extension without the path. "I think we're all Bozos on this bus!" - Firesign Theatre [jester]
  20. ArtieChoke

    Parameter SP return value problem

    The return value is for the number of rows affected by an insert, delete or update statement. Otherwise it's a -1. What are you trying to get back? "I think we're all Bozos on this bus!" - Firesign Theatre [jester]

Part and Inventory Search

Back
Top