Viewing 15 posts - 4,156 through 4,170 (of 6,676 total)
See if this helps...
Declare @curYearStart datetime
,@prevYearStart datetime;
Set @curYearStart = dateadd(year, datediff(year, 0, getdate()), 0);
Set...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
February 11, 2010 at 3:02 pm
I have no idea what DPM is or how it is configured or set up. You probably should ask the vendor of that tool how it works.
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
February 11, 2010 at 1:23 pm
In addition to the other posts, if you cannot use a datetime data type and absolutely must use a string data type, you should be using a unambiguous date. ...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
February 11, 2010 at 12:57 pm
On my system, the db_datareader role is owned by 'dbo'. Is this not the same on your system? If not, somebody changed it because all of the built in roles...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
February 10, 2010 at 9:51 pm
That really depends upon how they are connecting to the system. If they are using SSMS, you might need to change their default database.
I personally don't think it is...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
February 10, 2010 at 3:43 pm
I have not found a reason yet to create a schema that was not owned by dbo. Not to say that there isn't one, but I just have not...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
February 10, 2010 at 1:51 pm
Yes, you can upgrade to Enterprise Edition but you have to purchase new licenses. Enterprise Edition processor licenses are ~$20,000 per socket. A system with 4 quad core...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
February 10, 2010 at 12:04 pm
If you have defined 1.5GB of memory for each instance as the max memory, that is not the max memory that SQL Server will use. There is an additional...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
February 10, 2010 at 10:24 am
If you have not defined any permissions or assigned any securables to the role - then the user will not have any permissions.
Just creating a role does not confer permissions...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
February 10, 2010 at 10:18 am
I am not seeing this behavior on my test system.
What is the default schema for the user in that database?
What principal owns the developer schema?
My gut feeling is that you...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
February 10, 2010 at 10:16 am
Review these articles:
http://blogs.msdn.com/sqlserverfaq/archive/2009/04/28/is-sqlvdi-dll-functioning-properly.aspx
http://support.microsoft.com/default.aspx?scid=kb;EN-US;934396
Are you backing up across the network? If so, you need to make sure your network is capable of supporting SQL Server backups across the network. ...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
February 10, 2010 at 9:46 am
SQL Server 2005 Standard Edition only supports two nodes in a cluster - and I am not sure if that means it won't work.
However, I don't think you need to...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
February 10, 2010 at 9:26 am
The formula is fairly simple:
Set datefirst 7;
Declare @day int
,@today datetime
,@nextMonday datetime;
Set @day = 2...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
February 9, 2010 at 4:04 pm
Alvin Ramard (2/9/2010)
Anyone know if PowerShell can do the same things as RoboCopy?
No - and I really don't understand why they did not build that functionality into it. I...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
February 9, 2010 at 1:49 pm
Tara - what is the account that is running SQL Server Agent?
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
February 9, 2010 at 1:03 pm
Viewing 15 posts - 4,156 through 4,170 (of 6,676 total)