Forum Replies Created

Viewing 15 posts - 8,011 through 8,025 (of 9,641 total)

  • RE: Header Data Only Appears On first Page

    I don't think you can successfully use a dataset field in the header or footer of a report. I think you can only use globals there.

    I'd use a table...

  • RE: SQL Server 2005 - SSIS Package

    You are not getting a conversion error saying it can't convert the non-unicode string to a unicode string?

    I'd stick a data conversion transform in between and convert it...

  • RE: Error in sql job execution

    Are your processes the only ones that touch the spreadsheet?

    It sounds like one of the processes is not releasing the file. I think if you use the Import\Export Wizard...

  • RE: HELP - Join Selects

    All right, I was not sure what you wanted the first time, try this:

    [font="Courier New"]DECLARE @TableA TABLE(id_user INT IDENTITY(1,1) PRIMARY KEY, Name VARCHAR(10))

    DECLARE @TableB TABLE(id_user INT, id_menu INT)

    INSERT INTO @TableA

      ...

  • RE: HELP - Join Selects

    Here are 2 options where option 2 is probably the better option:

    [font="Courier New"]SELECT

       TableA.id_menu

    FROM

       TableA INNER JOIN

       TableB ON

           TableA.id_Menu = TableB.id_Menu

    WHERE

       TableA.id_User = 1

    UNION ALL

    SELECT...

  • RE: multiple web sites same DB

    My thoughts exactly.

  • RE: Need Help in SQL 2005 performance Tuning

    I'm not sure of all this, but I think lock pages in memory is an Enterprise edition option and not available in Standard. You definitely want to use AWE...

  • RE: Inner Join question

    Check the query plans and if they are the same it really doesn't matter. I prefer the second because I find it easier to read.

  • RE: How do I use DECLARE in SSRS?

    Can you zip the rdl and attach it to the thread?

  • RE: Explicit privileges on individual objects to a single user.

    In SQL Server the best way to handle security is through roles. You create a role and Grant appropriate permissions. Then you add users to that role.

    In your...

  • RE: SSIS Error

    As the link I posted said. Make sure you are running the 64-bit DTSEXEC.

  • RE: The Active DBA

    I don't do nearly enough. I love basketball and was playing 2 nights a week until I went traveling for a month in June and I haven't played since....

  • RE: How do I use DECLARE in SSRS?

    antonio.collins (8/8/2008)


    depends on how many reports he has to do and when they have to be done. since the sql is coming from existing code, making 'improvements' may open...

  • RE: How do I use DECLARE in SSRS?

    antonio.collins (8/8/2008)


    jason.griffith (8/8/2008)


    Still getting error messages, whether I use my code or yours.

    you do realize that if you'd go back to your original code and replace @holidayTbl with @HolidayTbl (as...

  • RE: MySQL Primer for the SQL Sever DBA

    Just to pile on, I agree it was an interesting article and cleared some things up for me. It has been a few years since I have looked a...

Viewing 15 posts - 8,011 through 8,025 (of 9,641 total)