Viewing 15 posts - 1 through 15 (of 61 total)
Is this a SQL login? Any chance it's just a mismatched SID issue?
December 15, 2010 at 12:09 pm
In Management Studio make sure you're looking at the Database User, not the Server Login
or
SELECT o.[name], u.[name], p.permission_name
FROM sys.database_permissions p
INNER JOIN sys.objects o on p.major_id = o.object_id
INNER JOIN sys.sysusers u...
December 15, 2010 at 8:37 am
No, I don't believe that's expected. When you grant exec rights, it should show under the Securables for that User.
December 15, 2010 at 8:29 am
You can use 2005 Management Studio for 2008 databases, but you need SP3 and even then I've seen issues. IMO your best bet is to install the 2008 client...
December 15, 2010 at 7:40 am
Are you running perfmon or any kind of 3rd party solution to monitor the server? It's kind of hard to say without more info about what you're seeing on...
December 13, 2010 at 12:41 pm
You can use xp_delete_file (http://sqlblog.com/blogs/andy_leonard/archive/2009/03/11/xp-delete-file.aspx) or you could write something using xp_cmdshell (assuming you have xp_cmdshell enabled).
December 13, 2010 at 12:18 pm
I'm not sure I necessarily have a "solution" for your issues...
1. Yes, the summary pane defaults to List, but select a server or database and click on report and...
September 22, 2006 at 2:51 pm
You can backup and restore dbs with developer edition. Actually the developer edition has identical functionality as enterprise edition, the only difference is in the licensing.
September 7, 2006 at 6:55 am
September 6, 2006 at 6:47 am
Thanks, the drop down is populating correctly, here's roughly what I'm using to populate with:
create procedure rpt_procname
@filter int
as
if @filter = 1
select
column1...
July 7, 2006 at 5:59 am
dtsrun/dtexec will take switches for username and password...
June 12, 2006 at 6:56 am
Thanks for the reply (although I don't see anything in your post). Should have replied earlier, but I figured out the solution last week.
May 8, 2006 at 5:38 am
Not sure how complex it will be, but yes a select is the best way to go. If it's something you do a lot, create a view and select from...
March 7, 2006 at 1:03 pm
You can also set up a new counter log in perfmon to send data directly to SQL.
March 7, 2006 at 11:50 am
Viewing 15 posts - 1 through 15 (of 61 total)