Viewing 15 posts - 976 through 990 (of 1,365 total)
Mirroring is database specific it has nothing to do with rest of the B,C,D databases for which its not being configured. Also, the source database in mirroring is available for...
November 11, 2008 at 2:49 pm
Try to find out the object occupying space there by querying sysindexes table:
select * from sysindexes
where groupid='Blob object filegroup ID(from sysfilegroups)'
MJ
November 11, 2008 at 2:42 pm
Execute permissions default to the public role for these stored procedures.
MJ
November 11, 2008 at 12:16 pm
CREATE INDEX idx_1 ON table1(col1) ONLINE
MJ
November 11, 2008 at 11:05 am
Do make use of ONLINE option while creating the index.
MJ
November 11, 2008 at 10:35 am
If you really need to do this then make use of replication as it also allows for ddl changes to be replicated along with data in sql server 2005.
MJ
November 11, 2008 at 9:37 am
You shouldn't shrink your database as it creates frgamentation and consumes costly server resources like cpu etc.
http://www.karaszi.com/SQLServer/info_dont_shrink.asp
Read about the three options on books online and you will understand it.
MJ
November 11, 2008 at 9:15 am
Ananda,
Is there any column defined as a "uniqueidentifier" for this table and check is there any other table where this trigger tries to insert data when fired?
http://www.eggheadcafe.com/software/aspnet/31942317/operand-type-clash-uniqu.aspx
MJ
November 11, 2008 at 9:03 am
I meant the media should be for SQL Server 2005 standard or enterprise edition not for RTM one.
MJ
November 10, 2008 at 1:55 pm
Have you checked the confilict schema script? There must be some messages about articles for which its not able to initialize subscription.
MJ
November 10, 2008 at 11:34 am
Are you using correct installation CD or media file as I see the version as
2005.90.1399.0 in the error messages.
The above file version is for RTM version.
http://sqlserverbuilds.blogspot.com/
As per upgrade...
November 10, 2008 at 11:31 am
Are you able to ping the remote server? How you have registered that server by name or IP?
MJ
November 7, 2008 at 1:00 pm
Where exactly you are checking for space usage:
Taskpad, thru Command or ?
MJ
November 7, 2008 at 12:57 pm
Are you logged in on the system with your credentials? If yes, is that credential having rights to that server instance? Which account is used for starting sql server service?
MJ
November 7, 2008 at 11:36 am
Run the below mentioned code(on under database) to kill all connections to this database and then drop the database:
DECLARE @DatabaseName nvarchar(50)
SET @DatabaseName = N'Enter DB Name here'
DECLARE @sql varchar(50)
SET @sql...
November 7, 2008 at 11:10 am
Viewing 15 posts - 976 through 990 (of 1,365 total)