Viewing 15 posts - 8,011 through 8,025 (of 9,641 total)
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...
August 8, 2008 at 2:33 pm
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...
August 8, 2008 at 2:25 pm
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...
August 8, 2008 at 2:16 pm
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
...
August 8, 2008 at 2:04 pm
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...
August 8, 2008 at 1:18 pm
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...
August 8, 2008 at 12:39 pm
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.
August 8, 2008 at 12:25 pm
Can you zip the rdl and attach it to the thread?
August 8, 2008 at 12:19 pm
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...
August 8, 2008 at 12:16 pm
As the link I posted said. Make sure you are running the 64-bit DTSEXEC.
August 8, 2008 at 12:10 pm
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....
August 8, 2008 at 9:40 am
antonio.collins (8/8/2008)
August 8, 2008 at 9:04 am
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...
August 8, 2008 at 8:54 am
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...
August 8, 2008 at 8:51 am
Viewing 15 posts - 8,011 through 8,025 (of 9,641 total)