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 Mike Lewis 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. JGresko

    Visual Studio .NET question

    I'm trying to move my development environment from one computer to another. Does anyone know if tthere is a way to move my user data and memu preferences? I'm trying to find where/how my toolbar snippits are stored. Thanks
  2. JGresko

    Newbie question: purpose of Delete in Insert trigger

    SQLSister, Understood, and thanks again. Judy
  3. JGresko

    Newbie question: purpose of Delete in Insert trigger

    Wow, thanks SQLSister for taking the time to outline this information for me. >>It is very dangerous to write a trigger such that it only expects to process one record. I follow you there! I did not set this application up and have been called in to help fix it. It looks like I have a lot...
  4. JGresko

    Newbie question: purpose of Delete in Insert trigger

    jmeckley, thanks, that makes more sense. That also answers another question I had about how the adjustment was being made. That explains the why they have it there, so now I just have to debug the logic to get it working correctly. The original value was 0 so that's where the 0 is coming...
  5. JGresko

    Newbie question: purpose of Delete in Insert trigger

    I would expect it to be use in an on Delete trigger. But why is it being used her, in an Insert,Update trigger? What does it contain during an Update? I'm updating the table with 60 and the SELECT @DC0BUDGET = IsNull(Dc0budget,0) FROM Inserted returns 60 as expected, but then the IF...
  6. JGresko

    Newbie question: purpose of Delete in Insert trigger

    Hi I have been working with other database for a number of years now, but this is my first experiance with SQL Server. I'm finding a lot of confusing things about the way this database I'm dealing with was written. I'm used to putting my database commands into my application that sits on top...
  7. JGresko

    Two table query acting strangely. Need ideas.

    Thanks PH, I hadn't tried that version, but I just did and it still didn't come back. Judy
  8. JGresko

    Two table query acting strangely. Need ideas.

    This should be a simple, straight forward query, but it won't come back. Because it's so simple I don't know what else to do to debug it... Platform: Oracle8i Enterprise Edition Release 8.1.7.3.0 What I'm trying to do: Query two tables containing cost data to get the average line item cost...
  9. JGresko

    Response.Write looping

    I have a page where I'm running a process that is going to take roughly 20 minutes. I want to give the user feedback every few minutes to show the process status. I'm doing this by using response.write to list out process actions and then use response.flush at certain key points to output the...
  10. JGresko

    Running long process in background

    I have an ASP.NET web application that needs to allow the user to start a long process to perform complex calculations and create/manipulate database records. -- I need to allow a user action to start the process from a form where needed input parameters are supplied. -- I'm planning on...
  11. JGresko

    Execute application on the server

    I have a long process I'd like to turn into an executable on the server and enable the ASP.NET application user to kick it off. Did you ever find out how to execute an application on the webserver? Judy
  12. JGresko

    converting image to two colors

    Well that would be great! I've found someone here who's a graphic artist and is going to handle it with the printer for me, so I don't have to worry about it now. Thanks for the reply!
  13. JGresko

    converting image to two colors

    I have been asked to provide a logo in two colors only to our printers. Since our logo is shades of blue and black, how do I save it as those two colors only?
  14. JGresko

    Class Usability Question

    Thanks Mark, That is what I'm discovering too... I'd hoped someone on the list had discovered a way. Oh well, it was worth a try. [reading] Thanks
  15. JGresko

    Class Usability Question

    I'm writing a class that's going to be used by other programmers in my company besides myself. I'd like to provide decriptive popups for the IntelliSense to help them determine which properties or methods they need to use (like what appears in the yellow box next to getType when you click on...
  16. JGresko

    Sharing files between different projects in one solution

    Still looking for an answer...
  17. JGresko

    Sharing files between different projects in one solution

    My office partners and I are trying to figure out the best design for a large ASP.NET project we are doing. I set up the prototype in Visual Studio as a solution with one project that contained many folders for each 'mini project' in our application suite. A co-worker wants to break out the...
  18. JGresko

    SubQuery - complex syntax

    Oh, wait... after taking a closer look, I just noticed what you did... you are right! Sorry about the last message. Thanks!! Judy
  19. JGresko

    SubQuery - complex syntax

    No, that won't work. This is not an AND because it would return nothing and an OR will cause cartesianing (sp). I only want one main record returned with the correct agent names inserted. It will be three different agents, therefore three different records from T2... an AND would not return...
  20. JGresko

    SubQuery - complex syntax

    I'm trying to pull one record from one table that has a lot of referrences to other tables in it. I would like to be able to pull in the values from the other tables, but I can't do a normal join because multiple fields in the main table reference the same field (but different records) in the...

Part and Inventory Search

Back
Top