Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default tracking users

    Hi,

    What's the best way to track what stored procedures are
    being used along with the variables that are being passed
    to them? I'm thinking that is the best and/or easiest way
    to track which users are accessing my website.

    ASP is my front-end app to SQL 2K. I'm using a cgi
    variable to capture the users NT username and then passing
    that to a stored procedure in sql server to verify that
    they have access to the site. I'm using a generic user
    group role that I created in SQL 2K for all the users in
    the site.

    I originally began using sql profiler, but I would have to
    constantly keep that running. Is there stored procedure
    that I can periodically run to view all the variables that
    have been passed back to my stored procedures during a
    specified time period?

    Any suggestions are greatly appreciated.
    Thank You,
    Jenise

    Jenise Guest

  2. Similar Questions and Discussions

    1. License.Limit.Exceeded with 4x150 users licence andonly 300 real users
      As indicated by the ongoing discussion, this issue can have different causes - can you describe your application a little bit? How many users are...
    2. License.Limit.Exceeded with 4x150 users licence and only300 real users
      We have 4x150 users licence, set to unlimited bandwith. We get these messages in event viewer: Connection rejected by server. Reason : :...
    3. InDesign tracking vs. Quark tracking?
      Hi Anne Marie, I would describe letter, word, and glyph scaling parameters as things the paragraph composer can fuzzy-logic work with. Fuzzy logic...
    4. Tracking users on the site
      Hi All, I have a client who wants a feature where you can keep a "buddy list" of registered users to their site and have a section that will tell...
    5. Tracking Users !!
      I am trying to track the number of users currently view a site. The code below is what i am using. However, when i leave the site..the number of...
  3. #2

    Default Re: tracking users

    You can slap the variables on the querystring and run it that way. Many web
    log packages will do that.

    Another method is to alter your stored procedure to set up a basic logging
    mechanism. You can log user's sessions fairly easily. If you set up your own
    database with the IP address, you can compare this to the web logs for a
    more full picture.

    --
    Gregory A. Beamer
    MVP; MCP: +I, SE, SD, DBA

    ************************************************** ********************
    Think Outside the Box!
    ************************************************** ********************
    "Jenise" <anonymous@discussions.microsoft.com> wrote in message
    news:0b9501c397ea$fb8c1930$a601280a@phx.gbl...
    > Hi,
    >
    > What's the best way to track what stored procedures are
    > being used along with the variables that are being passed
    > to them? I'm thinking that is the best and/or easiest way
    > to track which users are accessing my website.
    >
    > ASP is my front-end app to SQL 2K. I'm using a cgi
    > variable to capture the users NT username and then passing
    > that to a stored procedure in sql server to verify that
    > they have access to the site. I'm using a generic user
    > group role that I created in SQL 2K for all the users in
    > the site.
    >
    > I originally began using sql profiler, but I would have to
    > constantly keep that running. Is there stored procedure
    > that I can periodically run to view all the variables that
    > have been passed back to my stored procedures during a
    > specified time period?
    >
    > Any suggestions are greatly appreciated.
    > Thank You,
    > Jenise
    >

    Cowboy \(Gregory A. Beamer\) Guest

  4. #3

    Default Re: tracking users

    Thanks for the idea, I'll try that.

    Jenise :)
    >-----Original Message-----
    >You can slap the variables on the querystring and run it
    that way. Many web
    >log packages will do that.
    >
    >Another method is to alter your stored procedure to set
    up a basic logging
    >mechanism. You can log user's sessions fairly easily. If
    you set up your own
    >database with the IP address, you can compare this to the
    web logs for a
    >more full picture.
    >
    >--
    >Gregory A. Beamer
    >MVP; MCP: +I, SE, SD, DBA
    >
    >************************************************* *********
    ************
    >Think Outside the Box!
    >************************************************* *********
    ************
    >"Jenise" <anonymous@discussions.microsoft.com> wrote in
    message
    >news:0b9501c397ea$fb8c1930$a601280a@phx.gbl...
    >> Hi,
    >>
    >> What's the best way to track what stored procedures are
    >> being used along with the variables that are being
    passed
    >> to them? I'm thinking that is the best and/or easiest
    way
    >> to track which users are accessing my website.
    >>
    >> ASP is my front-end app to SQL 2K. I'm using a cgi
    >> variable to capture the users NT username and then
    passing
    >> that to a stored procedure in sql server to verify that
    >> they have access to the site. I'm using a generic user
    >> group role that I created in SQL 2K for all the users in
    >> the site.
    >>
    >> I originally began using sql profiler, but I would have
    to
    >> constantly keep that running. Is there stored procedure
    >> that I can periodically run to view all the variables
    that
    >> have been passed back to my stored procedures during a
    >> specified time period?
    >>
    >> Any suggestions are greatly appreciated.
    >> Thank You,
    >> Jenise
    >>
    >
    >
    >.
    >
    Jenise Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139