Viewing 15 posts - 4,156 through 4,170 (of 6,679 total)
Michael Valentine Jones (2/11/2010)
This will verify the correct format and ensure that it is a valid date.
ALTER...
February 11, 2010 at 3:15 pm
CirquedeSQLeil (2/11/2010)
February 11, 2010 at 3:07 pm
That list will only show you backups for that database that were performed on that instance. Since the backup you are looking for was not performed on that instance,...
February 11, 2010 at 3:04 pm
See if this helps...
Declare @curYearStart datetime
,@prevYearStart datetime;
Set @curYearStart = dateadd(year, datediff(year, 0, getdate()), 0);
Set...
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.
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. ...
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...
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...
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...
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...
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...
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...
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...
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. ...
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...
February 10, 2010 at 9:26 am
Viewing 15 posts - 4,156 through 4,170 (of 6,679 total)