Viewing 15 posts - 2,131 through 2,145 (of 2,636 total)
No. From BOL:
KILL permissions default to the members of the sysadmin and processadmin fixed database roles, and are not transferable.
"Not transferable" means you can't assign the permission...
February 10, 2006 at 9:58 am
I agree with Juliekenny. Import the csv file into a staging table then use an UPDATE statement to join the staging table to tb_users and update the role column.
Greg
February 10, 2006 at 9:49 am
You didn't answer Allen's question about whether you can execute the DTS package manually. From the message you posted, I think the problem is in the package, not the job. ...
February 10, 2006 at 9:39 am
Interesting. We've been discussing the idea of putting our dev and demo on a single box in two instances.
We haven't examined all the pros and cons yet but a couple of advantages...
February 9, 2006 at 4:29 pm
DTS packages in scheduled jobs often fail because of security. A package in a job executes using the security context of the login that SQL Server Agent run under. I...
February 8, 2006 at 9:24 am
Ah, thanks Steve. You've gotten me thinking about my once and future favorite car: 1969 Chev Camaro RS/SS with 350, 4 sp, and cowl induction.
I had one when I...
January 27, 2006 at 9:19 am
1. Open the package in DTS Designer
2. Right-click in white space and select 'Package Properties'
3. Select the 'Logging' tab and check the box for 'Log package execution to
SQL Server'; make...
January 27, 2006 at 8:53 am
I work for a state government agency and the IT division has a set budget for a 2 year budget period. All training requests are prioritized by division management money...
January 26, 2006 at 5:21 pm
Hi Miguel,
SQLDTS.com has an article about conditional branching in a DTS package. I've used a version of the technique described in the article and was able to branch based on...
January 26, 2006 at 9:24 am
Hi Greg,
Our warehouse uses DTS for ETL and we've been pretty happy with it. We decided on it because we were already spending a hefty amount on business intelligence and...
January 26, 2006 at 9:15 am
Hi Steve,
Glad that helped. Would you share the solution in case someone else has the same problem?
Thanks,
Greg
January 26, 2006 at 9:00 am
Glad to help. I can't even think how many times logging has helped me figure out a problem in a package.
Greg
January 26, 2006 at 8:54 am
Finding what tables and views contain a column is pretty straightforward using system tables:
select o.name,o.xtype from syscolumns c join sysobjects o
on c.id = o.id
where c.name = 'column x'
January 25, 2006 at 11:36 am
Danny,
What permissions did you give the aspnet account in the source database? Does the account have permission to write to the disk location where the destination file is to be...
January 25, 2006 at 10:03 am
Thanks Phill. I didn't remember that, but our packages are modified manually so I've never had a problem with it.
Thanks again,
Greg
January 25, 2006 at 9:52 am
Viewing 15 posts - 2,131 through 2,145 (of 2,636 total)