Forum Replies Created

Viewing 15 posts - 631 through 645 (of 993 total)

  • RE: RPC

    For the events you do capture in profiler, try running them yourself in query analyser and see how fast / slow they are...  Use the default profiler setup - it...

  • RE: Column Alias in Case Statemnt

    Hmm 9GB - impressive amount of space

  • RE: Column Alias in Case Statemnt

    Could you post the code of your UDF?  Is it a simple procedure using a lookup table and some division?  For a small app a while ago that worked with...

  • RE: Column Alias in Case Statemnt

    You'll need to put the UDF in as the result of the case statement rather than the column alias name...

    Also know that you can press SHIFT+ENTER rather than ENTER to...

  • RE: Crazy Query Plan''''s killing performance!

    also check to ensure that the SET options are the same for both connections.  Are you using anything fancy like indexed views - they only work (without extra hints to...

  • RE: BLOCK INSERTS, UPDATES FOR A TABLE

    Look at the GRANT and DENY transact SQL statements in Books Online.

    If you also want to restrict it somewhat from administrators, you can do several things...

    a) Create a trigger for...

  • RE: RPC

    Your application is using connection pooling, which isn't necessarily a bad thing (is usually good!).

    Effectively ADO.NET will keep a connection open to your database for subsequent application "connections" to reuse,...

  • RE: auto increment problem

    The first "1" means to start at number 1.  The second "1" means to increment by 1 for each row.  So 2, 4 would give a sequence such as

    2,...

  • RE: SET ROWCOUNT and TVF

    Well caught with the UDF hole.  That's the sort of thing you could overlook and wonder why a select statement is returning garbage results.. Thanks!

  • RE: UDF/Query to Show dupes (but not entire Dupe)

    Good to hear you are on track    Let us know how you get on - am interested to see final solutions and how well...

  • RE: UDF/Query to Show dupes (but not entire Dupe)

    SQL itself is not designed to output a variable number of columns based on its input.  The idea is that you have a sql statement which will always produce a...

  • RE: Authentication Problems

    Integrated security is "Windows Authentication" - same thing.

    You can run SQL using Windows only authentication, or you can run it in "mixed mode" authentication - in this case, authentication can...

  • RE: Named Instances

    Your old SQL 2000 installation was using a default instance, hence you could just connect with the computer name (GermanShepherd).

    But you installed your 2005 as an instance - thus you...

  • RE: UDF/Query to Show dupes (but not entire Dupe)

    And how do we get the account group?  I don't see it in your table DDL you posted...

    Is your ultimate goal to put this into a spreadsheet or do you...

  • RE: How to make a DB a "black box"

    So all DB access is via your library?  From what I can see, giving them the DB won't help anyway because they need to develop against your library, not your...

Viewing 15 posts - 631 through 645 (of 993 total)