Viewing 15 posts - 106 through 120 (of 130 total)
Goto the users property and check under the database membership
msdb | Security | Users | [UserName]
October 23, 2012 at 11:49 am
This works for me when I just want a count of a bunch of stuff....
Select
(
SELECT COUNT(tem.ComputerName) AS JavaRecords FROM (SELECT ComputerName FROM v_Java2345 UNION SELECT ComputerName FROM v_Java67)...
October 23, 2012 at 9:12 am
Execute As doesn't go outside the local database without extended authentication from the other database. It's scope is within the local DB. I only recently learned this myself. ...
October 23, 2012 at 8:17 am
Jason's script should work. Did you run it as is or add to it? Post the actual script that you ran.
October 23, 2012 at 7:28 am
You're adding a 3rd table which is not what you originally asked for. If "maincourses" is a 1 to many relationship then without restricting it to a single row...
October 22, 2012 at 8:59 am
Users can use shared datasets in SSRS. Depending on your budget SAP BusinessObjects is really nice for adhoc reports for end users as long as the admin builds the...
October 22, 2012 at 8:17 am
here's the DelimitedSplit8k function and you can read the article at:
http://www.sqlservercentral.com/articles/Tally+Table/72993/">
http://www.sqlservercentral.com/articles/Tally+Table/72993/
CREATE FUNCTION [dbo].[DelimitedSplit8K]
--===== Define I/O parameters
(@pString VARCHAR(8000), @pDelimiter CHAR(1))
--WARNING!!! DO...
October 22, 2012 at 6:44 am
Are you sure you're local admin on the SSRS server?
October 22, 2012 at 6:22 am
You still haven't told us what "limited access" means. Can you connect to the server? Are you getting an error somewhere?
October 19, 2012 at 12:26 pm
Depends on what the sp is doing with the parameters. You'll need to post the script for the sp.
October 19, 2012 at 10:52 am
It's just the UI not refreshing. Just open the filesystem task edit and reselect the variable and ok out of the editor.
Select your variable from the package explorer and...
October 19, 2012 at 9:15 am
I've done that before :w00t:
Found it the same way.
October 19, 2012 at 9:10 am
On your filesystem task set delay validation to "True". This will get rid of the error or you can initialize the value of the variable to something.
October 19, 2012 at 8:57 am
From your original codes your 2nd insert won't insert into the [tblBulkPurchases] since the trans type is not "bulk purchase" so there's no record in the tblBulkPurchases with a "From...
October 19, 2012 at 7:57 am
Is usp_update the actual sp that you're editing? On your original post your vb is calling usp_updaterate. Nevermind I should check for more pages on a post.
Step through...
October 17, 2012 at 2:27 pm
Viewing 15 posts - 106 through 120 (of 130 total)