Viewing 15 posts - 1,486 through 1,500 (of 1,932 total)
This topic brings to me an incident I saw at a state agency I used to work at, so please indulge me as a relate this war story. This is...
July 18, 2013 at 9:16 am
I don't know, Steve. I have trouble with the concept of Big Brother, be it government or large corporate entities, knowing a great deal about me. Yes, it's a reality;...
July 17, 2013 at 12:56 pm
I just found out that because I'm using a bulk copy, which apparently requires ALTER TABLE permissions, I also had to include the db_ddladmin role. Who knew (I certainly didn't,...
July 16, 2013 at 11:21 am
OK, I've discovered that my problem , with the sp_AddRoleMember stored procedure, was using both [] and ''. What I've done is this:
EXEC sp_addrolemember N'db_datareader', N'DomainUsersAccess'
GO
EXEC sp_addrolemember N'db_datawriter', N'DomainUsersAccess'
GO
July 16, 2013 at 10:01 am
OK, without a doubt I have determined that the lines causing me problems are:
EXEC sp_addrolemember N'db_datareader', N'[DomainUsersAccess]'
EXEC sp_addrolemember N'db_datawriter', N'[DomainUsersAccess]'
Those 2 lines generate the error messages:
Msg 15410, Level 11, State...
July 15, 2013 at 2:40 pm
Some more info. I ran the SQL script attached to SQL Express using my Windows account. My account has the SysAdmin role assigned to it, so I would think it...
July 15, 2013 at 1:41 pm
Hi Lowell,
Well, as it turns out other priorities demanded my time, so I'm only now getting back to this. Here's the SQL Script that I came up with, based upon...
July 15, 2013 at 11:05 am
I work in a small shop (just 2 of us), and so having direct access to tables & views is SOP. Sorry.
July 11, 2013 at 8:20 am
I agree with you, JJ, that education people should have an exposure to programming, but not necessarily a high level of proficiency at it. It's somewhat analogous to elective courses...
July 10, 2013 at 3:18 pm
I agree with this article. It seems obvious to me (I am a developer first, DBA second), but the linked to article pointed out things I didn't think of. For...
July 10, 2013 at 8:17 am
OK, I've added our Domain Users group to the logins for SQL 2008 R2 Express on my PC. It's server role is public. Domain User's default database is the database...
July 9, 2013 at 1:22 pm
Hi Lowell,
Thank you for your reply. So are you suggesting I go with option 2, use a SQL user instead of integrated security?
July 9, 2013 at 10:44 am
I thought that performing a refresh would cause the dataset to update, so that's what I tried. It seemed to include the GenderDesc column, but it left the old Gender...
June 26, 2013 at 7:50 am
I've performed the left join to the Gender table in the stored procedure. It works fine. But for some reason the SSRS report refuses to see the change in the...
June 25, 2013 at 3:09 pm
Yes, geoff5, I agree with you. Since we're currently at SQL 2005, I'm going to have to change the stored procedure.
Well, I've done that, but for some reason the RDLC...
June 25, 2013 at 1:47 pm
Viewing 15 posts - 1,486 through 1,500 (of 1,932 total)