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. cathbuzz

    Passing Parameters

    It's kind of unclear where you are losing the UserName variable. Do you have it from the login screen and then lose it when the form you posted is submitted? I think it's because you are passing what is essentially a URL parameter in your form action string, but using a POST method on it. Take...
  2. cathbuzz

    Server hangs up when I delete a pull subscription

    I'm using SQL Server 7.0 on a server that doesn't have performance issues or tons of traffic. I have a fairly large database (~100 Megs), and I need to delete a pull subscription. When I do this, however, the database server hangs, and I have to restart the MSSQL and SQL Server Agent services...
  3. cathbuzz

    reading from a text file by line

    What I would do is treat the file as a list, with an endline as a delimiter: <cfloop list=&quot;#yourfile#&quot; index=&quot;line&quot; delimiter=&quot;#chr(13)#&quot;> <cfif Find(name,line) GT 0> <cfoutput>#line#</cfoutput> <cfbreak> </cfif> </cfloop>
  4. cathbuzz

    Merge Replication: Are Snapshots Agents Necessary?

    Now that I've put the initial snapshot onto the subscriber, I'm not sure why the snapshot agent would need to run on a schedule afterward. On the other hand, SQL Server 7.0 seems to set this up by default. Was this just configured when the sys admin set it up possibly? Or is there a good reason...
  5. cathbuzz

    Merge Replicaton: Can Subscriber Resolve Conflicts?

    I'm running 2 SQL Server 7.0 servers doing Merge Replication. The idea really is to have mirrored servers in case one crashes :) The &quot;live&quot; server is currently the subscriber. The &quot;backup&quot; server is running as publisher and distributor, basically because we wanted it to be...

Part and Inventory Search

Back
Top