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

    need help finding groups for a user from trusted domain

    In the second domain, the ussers from the first domain are lised as "ForeignSecurityPrincipals" ... The "name" is S-1- ... you get the picture... But the "Readable Name" shows as "DOMAIN1\username" Can I search by "readable name" instead of username and maybe find the user? Drilling down on...
  2. TravisLaborde

    need help finding groups for a user from trusted domain

    The AD guys tell me the two domains have a trust relationship. And that when they manage the second domain, the can simply pull up a group and add members to it from the first domain. So, we have something like: DOMAINTWO\GroupName which contains users like: DOMAINONE\UserName In my code I...
  3. TravisLaborde

    need help finding groups for a user from trusted domain

    In our network setup, we have users and groups on one domain and some groups on a separate trusted domain. I need to find which groups a user is a member of. The "standard 5 lines of code" show me the groups that are on the same domain where the user exists, but not the groups from the trusted...
  4. TravisLaborde

    howto use second monitor via code?

    Thanks for the reply! I tried the snippet in that thread and I had some trouble. I had to make the slight modifications below. This is VB.NET 2003 code: Dim myOtherForm As New Form2 With myOtherForm .StartPosition = FormStartPosition.Manual .DesktopLocation =...
  5. TravisLaborde

    howto use second monitor via code?

    If I were to write a simple image-viewing application, where thumbnails are shown on the "main" window, and you can click on an image to have the full image appear - could I cause that full image to appear on the second display instead of on the main display? How would I go about that? Is...
  6. TravisLaborde

    set .clob via ado.net

    I'm trying to insert data into an Oracle 8 database from ADO.NET 1.1, into a CLOB field. If I just concatenate a big SQL string and push it in via .CommandText it works, as long as the CLOB data isn't over 4k (or close to that). So, I've tried various methods to put that data in there, and...
  7. TravisLaborde

    update trigger without a form?

    Thanks, I suspected as much. But since I haven't done any real development in Access since 97, I was hoping that I had either forgotten something, or that some new feature would help me. Thanks again! Travis
  8. TravisLaborde

    update trigger without a form?

    I've run into a situation where I need to know when records in a database have been updated, but these updates are done using a ADO in an app that I have no control over. I've already tested that I can add a field "DateLastModified" to the tables I'm interested in without breaking this app...
  9. TravisLaborde

    high availability via redundancy

    Where would I begin to learn about implementing high availability for IIS servers? Our company is beginning to invest more in our public sites, and the question has come up as to whether it's time to introduce some sort of redundancy for reliability reasons. We're not really interested in...
  10. TravisLaborde

    img src causes new session?

    Actually Chris, the request would be coming from the browser. As I understand it, the "real" server sends the HTML to the browser, which then makes it's own separate connections to download the images for the IMG tags. So, the browser is making connection to the tracking server directly. The...
  11. TravisLaborde

    img src causes new session?

    Our company has a few separate public sites. In order to centralize our analysis of how traffic moves through the sites, we have set up a separate site to serve images to the various sites, by having the "real" sites dynamically generated, including IMG tags where the SRC points to a URL at the...
  12. TravisLaborde

    performance question

    Thanks for the replies but... I'm not sure I asked the question properly.... ServerA is IIS and hosts many asp and asp.net pages. This is the server everyone "knows" about and connects to. ServerB is also IIS but hosts WebServices, which are used in turn by ServerA. One particular...
  13. TravisLaborde

    performance question

    On Windows 2000 Server, we're running IIS, and have both ASP.OLD and ASP.NET (1.1) installed. On one particular ASP.NET page, it calls out to a WebService on another machine, and it's a very long running request. What I think we're noticing is that when this page is called, other people who...
  14. TravisLaborde

    how to measure traffic between SQL Server and IIS Server?

    I have downloaded a few different network monitoring tools, to measure the amount of traffic being sent between machines on the network... After trying a few of these programs, I still have yet to find one that shows the traffic between my IIS and SQL Server. We use ASP/ADO to query SQL Server...
  15. TravisLaborde

    how to find the last date in the month for a given date

    Wow, Marsha! I had the thought of making the date the 1st, then adding one month, then subtracting one day... which seems to be what you are doing here? I find it hard to even read it, but it works :) Thanks very much, Travis
  16. TravisLaborde

    how to find the last date in the month for a given date

    How can I find the last day in the month for a given date in TSQL? For example, if I have a field account_date with values such as 4/23/2003, 5/10/2003... I'd like to return 4/30/2003, 5/31/2003 in my queries. I need it to be in-line sql or a function or such so that I can then group based on...
  17. TravisLaborde

    right clickk roblems in start menu

    Thanks Fishguy! That was it exactly! Wow, I'd have never connected "drag-and-drop" to "right-click-doesnt-work." I appreciate the help! Travis
  18. TravisLaborde

    right clickk roblems in start menu

    This is on a fresh install... now it is on another PC as well.... anyone else have any ideas? Travis
  19. TravisLaborde

    deployment problem please help

    I am having issues regarding object ownership on a deployed database. The database was created on my laptop, to which I login as sa normally, but deployed on a server where I am not sa, via IP/Internet. That all went fine, because I logged in via the given credentials, and used scripts to...
  20. TravisLaborde

    execution plan takes a lot of time to generate?

    I understand that the documentation would take longer... I was just wondering if the times I was seeing... 1-2 seconds compared to 30 or more seconds was something a bit over the edge, or very normal. Since no one seems to be posting that it is strange, I'm guessing it's not. Thanks! Travis

Part and Inventory Search

Back
Top