Viewing 15 posts - 5,386 through 5,400 (of 9,643 total)
I assume that you have granted the report user execute permissions on the procedure. Then you need to setup the Linked Server to either use a specific user on...
April 14, 2009 at 1:27 pm
I would recommend that you check out this article[/url] as well. It addresses several problems that I have seen on forums around triggers.
April 14, 2009 at 12:40 pm
I think this will do what you want:
SELECT
O.OBJECTID,
O.PostCode
FROM
OBJECT AS O JOIN
PostCodeRange AS PCR ON
...
April 14, 2009 at 12:36 pm
Cursors and looping are going to cause performance problems. If you cannot remove the cursors and looping you should look at how you are handling transactions. Are you...
April 14, 2009 at 12:30 pm
What controls (table, list, textbox) are you using on the report?
April 14, 2009 at 12:22 pm
Are you backing up directly to tape? Can you post the Backup command?
April 14, 2009 at 12:04 pm
Are these data changes or schema changes?
April 14, 2009 at 10:48 am
In my experience the best way to handle this is to "split" the delimited list into a table and join to it. Check out this article[/url] on the most...
April 14, 2009 at 10:46 am
From BOL (bolding mine):
ALTER COLUMN
Specifies that the named column is to be changed or altered. ALTER COLUMN is not allowed if the compatibility level is 65...
April 14, 2009 at 10:40 am
Are the credentials used by SSRS the same as the ones you are using in SSMS?
Can you use OpenQuery in SSMS? The first error looks like Ad Hoc Distributed...
April 14, 2009 at 10:19 am
I'd recommend looking at the execution plan for the stored procedure and tuning it first. I'd also verify the statistics are up to date for the tables included in...
April 14, 2009 at 10:17 am
April 14, 2009 at 10:12 am
In your stored procedure you need to delete the child rows first (Honorar), then delete the parent row or rows (Vraboten). Something like this:
Begin Transaction
Delete
From
Honarar
Where
...
April 14, 2009 at 10:11 am
The "new" code with the file number removed should load all the files for the specified trace. On my laptop, which I reboot somewhat regularly, and does not have...
April 14, 2009 at 2:28 am
JJ,
The length of a post is not why I would skip one. It is the coherence and readability of a post that matters to me. I'll scroll through...
April 14, 2009 at 2:15 am
Viewing 15 posts - 5,386 through 5,400 (of 9,643 total)