Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)

  • RE: SQLAgent mail not working

    Yes, but I can not be very precise with my explanation and I'm not sure if it is correct: SQLServer needs the MAPI library installed and configured in order to send...

  • RE: Storing PDF and JPEG file in SQL Server

    I agree with Ray, SQL Server is not a good document management system. When I have little documents I use SQL Server to store the path and other attributes of the...

  • RE: Drop and add users in multiple DBs

    I have just a suggestion. Have you tried this?

    Instead of

    SET @sqlstring = 'USE ' + @dbname

    EXEC sp_executesql @sqlstring

    PRINT @dbname + '  ******active db name*****'

    SET @loginname = (SELECT name...

  • RE: Distinct languages in a database

    I do not know what your case exactly is but next two proposes are exposed:

    One solution is to have different databases with different collations (one for each language you need).

    If you...

Viewing 4 posts - 1 through 4 (of 4 total)