Viewing 9 posts - 1 through 9 (of 9 total)
If I query useing servername.database.schema.tablename it returns records, but in management studio I can't see the databases, its just linked server node.
Thanks
August 3, 2010 at 5:01 am
When a publication database is mirrored, Log Reader Agent behavior is governed by the mirroring state of the database. By default, the Log Reader Agent can only replicate log records...
April 29, 2010 at 10:31 am
Data is copied to the mirrored server in Synchronous fashion to avoid chances of data loss. In order the data to be committed on principal it should first be commited...
April 28, 2010 at 10:42 am
Try this code to select the text between '[' and ']' in a column
SELECT SubString
(description,
charindex ('[', description) +1,
charindex ( ']',description) - (charindex ('[', description) +1)
)
FROM PUBLISHITEM
WHERE DESCRIPTION LIKE '%Doc...
November 6, 2009 at 7:51 am
There is no option available to detach system database, but you can restore the system databases from backup.
AQKhan
August 20, 2009 at 5:05 am
Check the space in tempdb or the HD partition where tempdb is placed. Due to space constraint tempdb may not be able expand. When you restart the SQL Service it...
August 18, 2009 at 4:09 am
Hi Sadequl Hussain
Can you share some of the scripts for stored procedures so that I aslo start work on that
AQ KHAN
July 21, 2009 at 8:34 am
A useful strategy in large databases is to partition a single logical set of data into multiple physical storage locations for manageability or performance reasons.
SQL Server 2005 supports partitioned tables...
July 10, 2009 at 5:37 am
Viewing 9 posts - 1 through 9 (of 9 total)