Viewing 15 posts - 106 through 120 (of 2,635 total)
WayneS (6/4/2010)
Greg
June 4, 2010 at 9:31 am
It's not obvious from that job step message what the problem is. Do you have any logging enabled in the package? If not, I suggest doing that and...
Greg
June 4, 2010 at 8:59 am
The first thing that comes to mind is to make sure you updated the configurations in the packages. It sounds like you're saving file paths in the configurations? ...
Greg
June 3, 2010 at 2:56 pm
I totally agree with Shawn. We've never done an in-place upgrade because of the "no fall back option" issues. Side-by-side migration offers the ability to have the SQL...
Greg
June 3, 2010 at 9:44 am
select databaseproperty('databasename','issingleuser')
Greg
June 1, 2010 at 12:13 pm
By default, jobs run as the SQL Agent service account. You would create a credential and proxy if you wanted to have the job started by an user account....
Greg
June 1, 2010 at 9:45 am
Wow, a lot of responses to this one! I have quite a few hobbies, none of which involve computers. While I enjoy the challenge of working with databases,...
Greg
May 28, 2010 at 9:29 am
I think the only way the user could own the schema is if someone actually made it the owner. Is this one of the databases that the login created?
To...
Greg
May 27, 2010 at 9:41 am
The login you see as domain\username is your connection to the instance you're viewing and isn't used in execution of the job.
Typically, a job is run under the...
Greg
May 27, 2010 at 8:47 am
select * into "Backup Table Name" from "source table"
This will create a new table and populate it with the result set of the select from source table. Put this...
Greg
May 26, 2010 at 11:02 am
Do you want a login other than the SQL Agent account or a member of sysadmin to execute the job? See SQL Server Agent Fixed Database Roles in BOL.
Greg
May 25, 2010 at 10:38 am
If you're using Enterprise Manager, expand server, Management, SQL Server Agent, right-click on Jobs, select All Tasks, select Generate SQL Script...
If you're using SQL Server Management Studio, expand server, SQL...
Greg
May 20, 2010 at 11:52 am
Need more information.
What login is the application using to connect to the databse?
What login are you using to connect via SSMS?
What are the database privileges of the logins...
Greg
May 20, 2010 at 11:04 am
Am I the only one who finds this a little odd that by version 2008 (R2) of SQL Server that there does not appear to be any default way of...
Greg
May 19, 2010 at 10:47 am
The only way I know is to have a DDL trigger enabled for CREATE_LOGIN.
Greg
May 18, 2010 at 1:02 pm
Viewing 15 posts - 106 through 120 (of 2,635 total)