Viewing 15 posts - 1 through 15 (of 21 total)
Here is the command line parameter fix for adding replication/other components on cluster environment.
*******************************************************************
C:\Software\SQL 2005 STD\Standard_x86\Servers>start /wait setup.exe /qb VS=SQL1 INSTANCENAME=SQL1 ADDNODE="xxxx1,xxxx2" GROUP="GROUP 0" IP="xxx.xx.xxx.xxx,Public" ADDLOCAL=SQL_Replication ADMINPASSWORD=xxxxx INSTALLSQLDIR="C:\ Program...
September 11, 2009 at 6:57 am
Use full text
Full-Text Indexes can query binary formatted data (Excel data, Word
documents, etc.)
February 24, 2009 at 5:47 am
Hi,
Look at the job performing the backup and disable it.
February 18, 2009 at 12:48 am
Hi,
I've installed without any problem.
Install it on the machine that has the instance, if you want to update the administrative tools of the second node, you must install it...
February 17, 2009 at 6:33 am
I have had databases in compatibility mode 80 in SQL Server 2005 without any problems.
February 13, 2009 at 1:13 pm
I do this with my suppliers.
Restore a copy of the production environment to the test environment.
Then run some scripts to delete data or change data.
February 12, 2009 at 6:58 am
February 11, 2009 at 3:28 am
To delete a filegroup, you must first delete the file associated with the filegroup.
ALTER DATABASE [your database] REMOVE FILE [filename]
GO
ALTER DATABASE [your database] REMOVE FILEGROUP [filegroupname]
GO
February 11, 2009 at 1:32 am
Sorry,
select case when indexes.type_desc in ('HEAP','CLUSTERED')
...
February 11, 2009 at 12:19 am
Try this script.
select case when indexes.type_desc in ('HEAP','CLUSTERED')
...
February 10, 2009 at 7:01 am
With this script you can see the objects that belong to the filegroup.
use
GO
SELECT
fg.data_space_id, fg.name,
ObjectName = OBJECT_NAME(p.object_id), p.index_id
...
February 9, 2009 at 4:18 am
Hi,
He launched the query and the result is immediate.
Check Activity Monitor to see if there is any process blocking.
February 6, 2009 at 4:44 am
For the needs you require, I would use SQL Server native.
February 6, 2009 at 4:27 am
I think it is, because the agent who performs the sending of mail. Try to monitor the service agent.
February 6, 2009 at 3:56 am
Viewing 15 posts - 1 through 15 (of 21 total)