Viewing 15 posts - 4,261 through 4,275 (of 7,191 total)
Sounds like you might have to do it manually, then. Try creating a login for your domain account and adding it to sysadmin. Then use SQL Server Configuration...
November 26, 2012 at 7:01 am
If it's a single transaction that's causing the log growth, increasing backup frequency won't help. You'll need to rewrite the transaction or ensure you have enough disk space to...
November 26, 2012 at 5:05 am
Something like this:
SELECT 'USE ' + name + ' EXEC sp_addrolemember ''db_datareader'', ''myusername'''
FROM master..sysdatabases
That will generate the SQL to add the user to the role in each database. This...
November 26, 2012 at 4:48 am
You'll be looking for the COALESCE function.
John
November 26, 2012 at 4:24 am
You're very fortunate to have this problem on the day the latest article in the transaction log stairway[/url] is published.
John
November 26, 2012 at 4:23 am
That will always make mistakes since you haven't declared @where.
To solve your problem, please search this site for "running totals". You should be able to find something that you...
November 26, 2012 at 3:58 am
Mike
It sounds as if you didn't use SQL Server Configuration Manager to make the change. Maybe you used the Services applet instead? Try using SQL Server Configuration Manager...
November 26, 2012 at 2:40 am
Try the GRANT command. You can use your favourite search engine to get the syntax.
John
November 23, 2012 at 9:09 am
emile.milne (11/23/2012)
Does view definition allow this.
The best way to find out is to try it. You'll probably learn something you didn't know along the way, as well.
John
November 23, 2012 at 4:52 am
The other sql server? I'm confused. Please will you give a brief overview of what each task in the package does on what server? Also, did you...
November 21, 2012 at 4:14 am
You say you're exporting "some of these data", so not the whole table? What query are you using to filter it out? Is the destination database on the...
November 21, 2012 at 3:31 am
You haven't provided many details, but one thing to look at is the context that the package runs in. When you run it from Visual Studio, it runs as...
November 21, 2012 at 3:19 am
Yes, once we get DDL and sample data for InningsBowlingDetails we should be able to rewrite that subquery quite easily.
John
November 21, 2012 at 2:31 am
If you could explain how you decide what are the best bowling figures for any one innings, this should be quite easy. For example, what order what you put...
November 21, 2012 at 2:02 am
First of all, why aren't you backing up msdb? Second, if you know you're going to want to access job history from a month ago, then maintain the data...
November 20, 2012 at 6:06 am
Viewing 15 posts - 4,261 through 4,275 (of 7,191 total)