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 gkittelson 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. Aidy680

    ASP Source Control

    Agreed xwb. many thanks.
  2. Aidy680

    ASP Source Control

    It wont be the database, but it will be ALL the pages. I'm currently just replacing individual pages - it's quite precise. However, the idea of replacing all the pages, without kicking out the users, fills me with dread!
  3. Aidy680

    ASP Source Control

    xwb - a followup question: Is it entirely necessary, in your opinion, to get all the users out of the application, when releasing a new version? If we're simply replacing like-for-like (files), wouldn't the transition be seamless? Throwing out users is the default position normally, but I'm...
  4. Aidy680

    Access Functions Best Practice

    Hi all, Interested in gauging members thoughts on Access VBA and Functions? Best practice to be stored in Modules or behind Forms? They will work when placed behind the latter, but cant help thinking it's bad practice.
  5. Aidy680

    ASP Source Control

    Thanks for all your time on this xwb, but I'm still not convinced that releasing into PROD, a load of files that haven't changed, into all manner of different directories, can be a good thing. Kicking out users during business hours is also a step too far. However, your time and opinions...
  6. Aidy680

    ASP Source Control

    Perfect. Exactly what i was after! I can see the attraction in this but also some negatives. For example, with an ASP project I would have to kick everyone out, to do a live release, as all the files would be replaced (albeit with the same thing). Currently, I'm far more surgical, and...
  7. Aidy680

    ASP Source Control

    Checking in is per individual file, but does the promotion to the next environment (DEV to UAT) constitute the whole solution, or just the file modified? Hope I'm being clear here.
  8. Aidy680

    ASP Source Control

    Your last sentence is interesting. When you say 'checkin everything', does that mean every file that constitutes your solution, regardless if they've been updated or not? If that is the case, I cant help feeling it's unnecessary. Why checkin files you haven't updated? Or have I got the...
  9. Aidy680

    ASP Source Control

    Thanks xwb. Much food for thought. Where do you stand on my other point re: synching out of ALL files to PROD, when just one file has been updated? The idea is that this allows you to maintain individual, separate versions. Is this common practice?
  10. Aidy680

    ASP Source Control

    I think the post below is probably better suited to this forum: Any of the good members of the Tek-Tips community, have any knowledge or opinions, on the best source control app, to harbour Classic ASP files? Also, discussing deployment strategies, what are peoples thoughts on re-deploying...
  11. Aidy680

    Classic ASP Source Control

    Any of the good members of the Tek-Tips community, have any knowledge or opinions, on the best source control app, to harbour Classic ASP files? Also, discussing deployment strategies, what are peoples thoughts on re-deploying the whole app (all files), when an update is made to just one file?
  12. Aidy680

    .NET / SQL Server Connection Issue Win 7

    Thanks for your reply Borvik. I'm not using a DSN - I'm using a hard-coded connection string within the app itself. Hope this makes sense.
  13. Aidy680

    .NET / SQL Server Connection Issue Win 7

    I appreciate your help Ralph, but I cant run it as an Admin as I have no idea what the password is and getting it, is not an option. It must be the app as they can see SQL Server otherwise. I'm wondering if they're connecting to DEV somehow, as everything seems to be pointing in that direction.
  14. Aidy680

    .NET / SQL Server Connection Issue Win 7

    Using Windows only. Using SQL Authentication is not possible. I dont know what UAC is I'm afraid. Sorry to be vague.
  15. Aidy680

    .NET / SQL Server Connection Issue Win 7

    Thanks Ralph. Yes I can ping the SQL Server and other apps can connect to the database.
  16. Aidy680

    .NET / SQL Server Connection Issue Win 7

    Hi, I have a .Net app, written in VS2008 that connects to a SQL 2005 back end, on Win 7. Everything works fine on XP. However, on Win 7, unless the user is in an Admin AD Group, the connection fails with the error message: The server was not found or was not accessible. Verify that the...
  17. Aidy680

    MIN Date Record

    Thanks Imex. I was able to adapt this to read something like: WITH CTE3 AS... SELECT ... FROM ... INNER JOIN ... WHERE ... ORDER BY ...
  18. Aidy680

    MIN Date Record

    Thanks imex. I thought it might be useful (understatement I know) to post the code: (SELECT TOP (100) PERCENT dbo.Table3.sdtDateTimeStamp, dbo.Table1.intFXInstructionID, Table1.vchFundCode, dbo.Table1.chCCY, dbo.Table1.monAmount...
  19. Aidy680

    MIN Date Record

    Hi, I have a query with 3 tables in it. It contains numerous fields, mainly from Table1, with a sprinkling from Table2 and Table3. The query returns 5 records. The records are all the same apart from the Date field, which contains different values for each of the records. The Date field is...

Part and Inventory Search

Back
Top