Forum Replies Created

Viewing 15 posts - 7,396 through 7,410 (of 7,490 total)

  • RE: Feedback - Upgrading 7.0 to 2000

    You're in deep sh**. This is mainly about politics.

    Unless there are some issues you can only solve with oracle, there is no reason to migrate. (guess not because now...

  • RE: Migrated Servers, Now Windows Authentication Fails

    Regarding windows-authentication, check if the 'Developer'-group is added to the local\groups\guests or users of your sqlbox (or a group they are member of).

  • RE: How to get the real USER_NAME?

    Check the IIS anonymous login setting. Maybe someone did put an overauthorized user-account overthere.

  • RE: Doing Short Circuiting in WHERE clause

    Seems fine, but check this :

    (You'll need to grant read access to all needed objects in stead of only to the sp(s))

    -- TESTSCRIPT based on Northwind

    -- create SQL-user-login

    sp_addlogin @loginame =...

  • RE: Doing Short Circuiting in WHERE clause

    If you're going for dynamic sql, your statements will always have to be compiled, optimized, security-checked, .... So you'll have to provide more access rights to the user(s).

    When you...

  • RE: SQL Agent won't start

    is agent running on "local system" and did you remove "builtin\administrators" ?

  • RE: Doing Short Circuiting in WHERE clause

    you've got the solutions. Remember that "short circuits" overheat ! If you use to much short circuits, your box might fireup. Do some performance checks as to what costs your...

  • RE: Alternate technique to "NOT IN" operator

    You've had the alternatives in previous replies. Having Declarative Referential Integrity (DRI) in place would have prevented those rows from getting inserted.

  • RE: HELP send email from smtp with xp_SMTPSendMail80

    wild guess :

    exec master.dbo.xp_SMTPSendMail80 @query = N'select * from sysusers',

    'user@server.net',

    'user@server.net',

    'server.mail',

    'help error'

    btw It's a nice practice to name your sp-parameters because it will not get you into troubles when you swap...

  • RE: vchar to nvchar

    With this conversion,you convert from 'local' characterset to nvarchar. If you have stored non-'local' characters in your varchar (so they don't make sence), and you convert to nvarchar, they will...

  • RE: How to determine persons age

    sometimes less code is more readable, use the else-structure.

    declare @bd datetime

    declare @fd datetime

    select @bd = '1976-2-2'

    select @fd = '2004-2-1'

    select case

    when month(@bd) > month(@fd)

    then datediff(year, @bd, @fd)-1

    when month(@bd) =...

  • RE: Restore MSDB vs. Script jobs

    If you have restored on the clone machine, remember to update the jobs so they wil not be launched on the "dna"-server ;). (update msdb.dbo.sysjobs set originating_server = *** where...

  • RE: Using SQL Mail on a Clustered Server

    I've had sqlmail running on my clustern, knowing it is not supported and knowing it needs a server-reboot evert +- 6 weeks. According to the users-responsable, this was no problem.......

  • RE: outer-join request that is not permitted

    probably someone can 🙂

  • RE: How do I get the SQL Agent service on a cluster to

    this option is to be managed using cluster administrator - sqlserveragent resource - properties - advanced. Check its settings.

Viewing 15 posts - 7,396 through 7,410 (of 7,490 total)