Viewing 15 posts - 4,681 through 4,695 (of 5,111 total)
You're trying to grant a user permissions when you do not have permission do do so. The db_executor role I gave you gives the user permission to EXECUTE, which was...
December 14, 2016 at 1:57 am
Do you need it as a Datetime? If you don't need/aren't storing the time, then use the datatype DATE.
Does it therefore manage to store any rows? As I said before,...
December 13, 2016 at 4:24 am
Can you supply some sample data and DDL (see the link in my signature). Without knowing what your data, especially the date field, looks like, this is going to be...
December 13, 2016 at 3:56 am
This technically works, but like i said, how do you know what user needs what user ID? What is your ordering? i have no idea what your DDL looks like....
December 13, 2016 at 3:48 am
pankaj 43245 (12/13/2016)
Yes i have specific user to be assign to existing user which will start in from user0001 to user2000.
So where is the data held? If you have a...
December 13, 2016 at 2:55 am
Phil Parkin (12/12/2016)
mandavli (12/12/2016)
it's active directory userOK, yet a SQL Agent job which runs the package gives that error ... are you certain?
I agree with Phil that seeing this error...
December 13, 2016 at 2:27 am
When you say you want to replace their name with a user, do you therefore have a username specific users should therefore be assigned? If not, how do you determine...
December 13, 2016 at 2:22 am
Ok, yes, this is a different question, what I've answered is how to give the Reporting Services Serive account execute privilegdes.
The db_securityadmin will allow a user to GRANT, DENY and...
December 13, 2016 at 1:59 am
CHAR and NCHAR will always use the full amount of characters. if tehre aren't enough, then Whitespace will be added.
For example, on a CHAR(10):
'Home' would become: 'Home ...
December 12, 2016 at 9:32 am
Did you add the user to the role? The message is giving you that error for a reason, that account can't execute that sp.
This, for example, works:
USE DevTestDB;
GO
CREATE USER [TestUser]...
December 12, 2016 at 9:25 am
Firstly, let's fix your code up a bit. Try to ensure you use IFCode brackets around your SQL. it makes it a lot easier to read for others:
INSERT INTO Metrics(Application,
...
December 12, 2016 at 8:57 am
SSRS won't see <span id="END_PAGE"></span> as a page break no.
How is your HTML being returned to you? Can you have it so that each row is one html page?
For example...
December 12, 2016 at 8:37 am
Personally I have a db_executor role on our databases (I've added it to our model, so it's on all of our new ones too), and I have added our SSRS...
December 12, 2016 at 7:45 am
etl2016 (12/12/2016)
I am seeing that special character on my SSMS query, where as the actual data does not contain that character.
Basically, data type is varchar for both source and destination...
December 12, 2016 at 7:07 am
What exactly is your question here? Are you saying that the character, ü, is not the character it should be? What character should it be?
December 12, 2016 at 6:20 am
Viewing 15 posts - 4,681 through 4,695 (of 5,111 total)