Forum Replies Created

Viewing 13 posts - 46 through 58 (of 58 total)

  • RE: How to pronounce SQL

    Thought it was beamer?

  • RE: Sending Messages

    Alternatively xp_sendmail can be used to send an email to anyone that can be resolved by the integrated mail services.

  • RE: Sending Messages

    A net send message can be sent to a user who is connected to MSSQLServer, by using enterprise manager. Look under management, current activity, process info, and then right click...

  • RE: Failed Logins

    OOOps, was supposed to reply and became a new topic. Code 18 i guess.

  • RE: Re: QL login

    Not as far as i know. This is one of the reasons why MS recommend that Windows authentication is used - more protection.

    I guess that you could run a...

  • RE: xp_sendmail

    There are often problems with the MAPI profiles, even when they have been set up correctly. You must log on to the server with the accout that is being used...

  • RE: msdb and recovery model on SQLAGENT start

    ALTER DATABASE [msdb] SET RECOVERY Full

    This will change the recovery model.

  • RE: table join

    This will return the players in order of the number of points they have attained, assuming that player can be used to join the tables.

    select player,sum(points) 'Sum of points'

    from tbl1.player...

  • RE: Profiler and privacy

    The database users should expect to having their work load and activities traced. i think that it is always a good idea to keep a track of what is going...

  • RE: Stored Procedures parameter

    You could consider calling the procedure from a loop, and then using a variable to determine the values being used. Lots of overhead for the server, since loads of results...

  • RE: Stored Procedures parameter

    You could consider calling the procedure from a loop, and then using a variable to determine the values being used. Lots of overhead for the server, since loads of results...

  • RE: Using "Like" or Wildcard

    Check with profiler that the SQL code you think is being passed to SQL Server is the code that is actually being sent to SQL Server from the asp page.

    Also,...

  • RE: Replication through triggers

    You could consider using the triggers to perform the remote updates. To do this you can look at building distributed transactions to perform the actual updates. Remember to set xact_abort...

Viewing 13 posts - 46 through 58 (of 58 total)