Forum Replies Created

Viewing 15 posts - 8,176 through 8,190 (of 9,641 total)

  • RE: SQL2K5 and Crystal Reports

    I don't know anything about Crystal Reports so as far as needing an ODBC connection, from the SQL Server side I don't think so. On the SQL Server you...

  • RE: Help with Trigger

    Here is something I think will work:

    [font="Courier New"]CREATE TRIGGER dbo.trptAppointmentsINSERT

       ON  dbo.ptAppointments

       AFTER INSERT, UPDATE[/b]

    AS

    BEGIN

        SET NOCOUNT ON;

        

         IF UPDATE(resource) OR UPDATE(site)

            BEGIN

                    UPDATE ptAppointments

                           SET resource = I.Resource +...

  • RE: Recommended reading?

    That book will get you the basics. Any of the Inside SQL Server 2005 books (4 in the series) are good. It really depends on what aspect of...

  • RE: Data Modification

    Here is something that works although it can be hard to read. You could also do it in steps. My example uses the AdventureWorks database:

    [font="Courier New"]SELECT

       UnitPrice,

       /*...

  • RE: SQL2K5 and Crystal Reports

    Usually when this happens it is because remote connections are not enabled in Express, I know you said it was on, but are BOTH tcp AND named pipes enabled? ...

  • RE: SSIS Send Mail Issue

    I had this issue on my personal PC because McAfee has a port blocking rule that blocked SMTP except from registered programs.

  • RE: Help with Trigger

    I think you want something like this:

    [font="Courier New"]SELECT

       I.resource + ' ' + I.site

    FROM  

       inserted I

    [/font]

    Inside your IF block.

  • RE: EXEC() results to populate cursor

    I'm not sure what you are trying to capture for data but if you google sp_MSforeachdb you may find out you can use this undocumented system procedure to accomplish your...

  • RE: Question Regarding N in SQL Statement

    N is used before character data literals to specify that it is a unicode string (nvarchar, nchar data types). SQL Server will normally do an implicit conversion of non-unicode...

  • RE: Backup Software Selection

    We use Backup Exec for the server backup and native SQL Backups for the databases. I have not heard good things about the SQL Agent for Backup Exec.

  • RE: sql help

    Just based on the number of correlated subqueries in your code I would say yes there is a better and faster way. Probably the best way for someone to...

  • RE: Correlated sub query takes more time to return result

    Sure it is still an issue in my query, but by using the join and doing the conversion on 1 side in the Derived table I reduce it to 1/2...

  • RE: Indexing on Foreign Keys is advisable or not?

    Sandy (7/30/2008)


    Gail,

    As MVP's are the people those who selected by the Microsoft itself... So I can consider their suggestion's as one of the selective answer for this topic....

    Cheers!

    Sandy.

    You might be...

  • RE: Add [ code ] tag to IFCode shortcuts

    I don't disagree that it would be nice addition, but there is a work-around. Also it would be nice if people would use the IFCodes period. How many...

  • RE: Stored Procedures Reconsidered

    J (7/30/2008)


    Ignore this posting, I am just subscribing to this thread. If anyone knows how to subscribe without making a dummy post, let me know. Regards

    On the top right hand...

Viewing 15 posts - 8,176 through 8,190 (of 9,641 total)