Viewing 15 posts - 361 through 375 (of 1,655 total)
From a license point I don't think that this is allowed.
Also you posted this question in a SQL 2005 forum and you cannot restore backups from a 2005 database...
May 12, 2009 at 5:01 am
1) With SQL 2000 you can have a maximum of 16 instances on one server. SQL 2005 supports up to 50 instances.
2) Seems like either an IO issue or database...
May 8, 2009 at 4:04 am
What's your OS?
If you use Windows2008 or Vista the UAC can cause this error while attaching a database.
May 7, 2009 at 8:17 am
You can query msdb.dbo.backupset for this.
It contains a column backup_size which will give you the size in bytes.
May 7, 2009 at 7:03 am
Sounds like the server has been installed with a case-sensitive collation.
Run SELECT SERVERPROPERTY('Collation') to check.
May 7, 2009 at 7:00 am
Could this be a problem with your client settings? SSMS and Query Analyzer have a setting called "Maximum number of characters displayed". You find it under Tools>Options>Query Results.
The default value...
May 7, 2009 at 2:41 am
Here's another very usefull document:
May 6, 2009 at 5:35 am
If I remember correct, SQL 2000 only supports adding and deleting of columns on a replicated table, but not changing an existing table. See also http://msdn.microsoft.com/en-us/library/aa237127(SQL.80).aspx
So if you want to...
May 6, 2009 at 5:33 am
It sounds like your monitoring app is issuing a sp_helpdb command against a databases which has an owner which does no longer exists.
This can happen when a windows login...
May 6, 2009 at 5:20 am
Vinoo (5/6/2009)
------
ALTER DATABASE CCBS ADD FILEGROUP [1111]
Does Not Work:
---------------
declare @filegroupname varchar(10)
set @filegroupname = '11111'
ALTER DATABASE CCBS ADD FILEGROUP @filegroupname
Question:
As you can see, in the first scenario, I am having the...
May 6, 2009 at 2:27 am
Ok, I stayed away from this thread so far and it looks like it's about a lot of other things not related to the quality of the questions but I...
May 5, 2009 at 6:43 am
Oh sorry, I thought you needed it the other way round.
Oracle knows the terms temporary tables, but they don't use the # prefix and are more like derived...
April 29, 2009 at 8:38 am
SQL Server has a stored procedure called sp_processmail, which you can use. Behind the screens it will call xp_readmail, xp_sendmail etc. For security reasons I usually create a copy of...
April 29, 2009 at 8:23 am
Viewing 15 posts - 361 through 375 (of 1,655 total)