Forum Replies Created

Viewing 15 posts - 961 through 975 (of 2,612 total)

  • RE: To write a trigger

    Here is an article on how to post to get a better response:

    http://www.sqlservercentral.com/articles/Best+Practices/61537/%5B/url%5D

    Please show at least an attempt at doing this yourself.

  • RE: Parallel Processing Query in Sql Server 2008

    You need to be a bit more specific about what you are trying to do.

    All versions of MS SQL have been able to process two queries at the same time...

  • RE: performance difference of plain and next joins?

    These two syntax differences will always generate the same execution plans as long as you have no outer joins. Once you have outer joins, the order in which you...

  • RE: Try Catch difference?

    In most other programming languages, you would see the same result. Anything that happens successfully before the error within a try/catch will actually happen unless you explicitly manage the...

  • RE: Dumb Question

    You cannot do this without dynamic SQL.

  • RE: how to get SSIS Server Name

    No.

    The SSIS Server knows what server the MDSB database is on (it is in a config file) but the msdb database does not know which SSIS server stored a package...

  • RE: JOIN Syntax

    The INNER JOIN / OUTER JOIN syntax is ANSI 92 standard (yup - the old syntax is REALLY old). The old syntax is deprecated and will be completely unsupported...

  • RE: Trigger With Error Handling Not Working

    It is an output parameter of the procedure you are already calling.

    Check books online, but I think this is it:

    [font="Courier New"]EXEC msdb.dbo.sp_send_dbmail

    ...

  • RE: Database mail not sending to accounts outside our domain

    Ok, if you are using Exchange and that is what you have configured as the SMTP server for database mail, there are configurations on the exchange server for allowing AMTP...

  • RE: Trigger With Error Handling Not Working

    Ok, first, you should rewrite the trigger to handle having multiple records in the INSERTED table. I understand your application currently cannot insert multiple records, but if the application...

  • RE: Database mail not sending to accounts outside our domain

    Database Mail uses SMTP to send messages. If you are using a mail server like Exchange, SMTP relays to external email addresses needs to be enabled. Be sure...

  • RE: how to get SSIS Server Name

    I guess I don't understand what you are asking for. The database engine would not know anything about an SSIS engine. However, since SSIS cannot have a named...

  • RE: SQL 2005 job

    Assuming the steps are all Execute SQL steps in your job, each step will get 1 spid. Since the steps have to be sequential, each connection will close before...

  • RE: Orphaned data in Cube

    It is probably that you picked the wrong field in the dimension relationships in the cube. This is pretty easy to do, especially since the auto-join features in visual...

  • RE: SQL 2005 job

    Assuming your job agent is connecting with a different username, it should be fairly easy to see if that user is blocking others just by looking at the activity monitor.

Viewing 15 posts - 961 through 975 (of 2,612 total)