Viewing 15 posts - 796 through 810 (of 1,069 total)
Have you Enabled C2 audit tracing?
I think C2 audit tracing is enabled and SQL Server is not able to write to it due to lack of disk space or other...
July 23, 2009 at 6:34 am
Glad to know that it works well.
But, I have concerns 🙁
Is it a production server? One should be carefull while issuing KILL command on a production server.
Do you have...
July 23, 2009 at 5:16 am
Best Practice, Books Online, In My Openion.
July 23, 2009 at 4:12 am
>>Do I have to Deattach or take offline the DB to copy the .mdf and .ldf files to other machine.
Yes. Without detach/offline files cannot be copied.
>> I can't do a...
July 22, 2009 at 11:12 pm
Tim Walker (7/21/2009)
Suresh B. (7/21/2009)
Page density is very low at 19%, which seems to be tie up with the issue, so any ideas why this would occur on a table...
July 21, 2009 at 10:07 pm
Page density is very low at 19%, which seems to be tie up with the issue, so any ideas why this would occur on a table that is only ever...
July 21, 2009 at 7:06 am
As per my knowledge, after adding a new article to a publication, it is mandatory to sync it with snapshot. And it does bulk insert, not single row insert.
BTW, is...
July 21, 2009 at 6:49 am
CREATE NONCLUSTERED INDEX [ws_pda_ack_i01] ON [dbo].[ws_pda_ack]
([job_number] ASC)WITH FILLFACTOR = 85 ON [PRIMARY]
It is 85% unused, but rows are only ever inserted into it (or later updated). There are...
July 21, 2009 at 4:14 am
Does anybody have any idea how to get past this? The bulk of my daily work is in SSMS.
Install the Client Tools.
July 21, 2009 at 3:26 am
Run the following script before generating new snapshot.
EXEC sp_changepublication
@publication = 'MainPub',
@property = N'allow_anonymous',
@value = 'false'
GO
EXEC sp_changepublication
@publication = 'MainPub',
@property =...
July 20, 2009 at 8:43 am
Right click on the subscription. Select properties. Under Security you can set Account name and password.
July 20, 2009 at 3:13 am
Glad to know that you found it.:-)
Thanks for posting it.
I was about to say that hundres of database triggers cannot be created on single database.
July 20, 2009 at 2:57 am
Hi Viji,
No need to enable any option. It appears automatically just like Functions and stored procedures.
For SQL Server 2000 it will not appear.
Regards,
Suresh
July 20, 2009 at 12:17 am
Programmability -> Database Triggers.
Under Programmability, first item is Stored Procedures, second item is Functions, third item is Database Triggers.
July 19, 2009 at 11:37 pm
Viewing 15 posts - 796 through 810 (of 1,069 total)