Viewing 15 posts - 151 through 165 (of 457 total)
In configuration manager, under the SQL Server 2005 services you should have a service for instance of SQL
SQL Server (MSSQLSERVER) -- Default
SQL Server (Name of Instance1) -- Named insatnce 1
SQL...
January 13, 2010 at 5:30 am
The script below shows how to grant select permissions to a specific table.
I create a login called test.
--Creates a login
USE [master]
GO
CREATE LOGIN [Test] WITH PASSWORD='P@ssw0rd'
GO
I then create a user in...
January 13, 2010 at 4:36 am
If you have no access to the remote server, how are you going to access it using BCP?
January 12, 2010 at 3:15 pm
Just to add to Jason's post, we use Legato to backup our SQL Backups (Redgate Backups to disk) and we mirror log backups to another server but also backup...
January 12, 2010 at 3:13 pm
You don't have a schdule setup on those jobs that says "Run on Agent startup"?
Which would obviously run the jobs specified.
January 11, 2010 at 10:37 am
This link might help you:
January 11, 2010 at 10:11 am
Surely a cluster failover will be relatively transparent to your users?
Are the application using it cluster aware?
January 8, 2010 at 8:56 am
You have my sympathy. What a ridiculous attitude to take to research! how do they think you get to be an expert?
I'll second that.
January 7, 2010 at 3:49 pm
The_SQL_DBA (1/7/2010)
Oksana March (1/7/2010)
Bru Medishetty (1/7/2010)
The_SQL_DBA (1/7/2010)
Bru Medishetty (1/7/2010)
Krasavita (1/7/2010)
How many db can we have per server and how much memory in total can I have?Thank you
You can start creating...
January 7, 2010 at 3:35 pm
AdammadA (1/7/2010)
GRE-452109 (1/7/2010)
That would make sense, you can't backup the log of the database in simple mode.
Yeah... it sorta makes sense.
I guess my problem is that why would it even...
January 7, 2010 at 2:56 pm
That would make sense, you can't backup the log of the database in simple mode.
January 7, 2010 at 2:38 pm
OK what is the maint plan trying to do?
Is the maint plan doing what you want?
How often is the job scheduled to run?
January 7, 2010 at 2:21 pm
AdammadA (1/7/2010)
Has anyone seen this behavior? Any thoughts on...
January 7, 2010 at 1:44 pm
Note sure if this is the same link but may also help you:
January 7, 2010 at 10:01 am
Borrowing Steve's query the below will return DB name and create date
exec sp_msforeachdb 'select ''?'', create_date FROM sys.objects where name = ''sysrowsets'''
January 7, 2010 at 9:54 am
Viewing 15 posts - 151 through 165 (of 457 total)