Viewing 15 posts - 1,021 through 1,035 (of 1,170 total)
No,
I'd recommend you just to follow your own strategy and planning, not others... it won't help you.
Regards
IgorMi
Igor Micev
November 13, 2012 at 1:43 pm
Hi,
May be something like this can help you
create table #locked
(spid int,dbid int,objid int,indid int,type varchar(10),resource varchar(10),mode char(3),[status] varchar(10))
insert into #locked
exec sp_lock
select l.spid, l.dbid,object_name(l.objid) [object],l.indid,l.type,l.resource,l.mode,l.status
from #locked l
Regards
IgorMi
Igor Micev
November 13, 2012 at 1:34 pm
Hi,
I think you can still stay on your RAID5
The following link http://www.dell.com/downloads/global/solutions/tradeoffs_RAID5_RAID10.pdf?c=
can explain you more. However if you can place your log and tempdb on a RAID 10then it will...
Igor Micev
November 12, 2012 at 3:39 pm
Hi,
I've changed it to 1435 (i would have changed it to another one later) but it is not that.
I was trying to connect from ssms 2008 and 2012 and the...
Igor Micev
November 12, 2012 at 4:20 am
If i leave both instances to listen on the default port 1433, then the second's services don't start.
Regards
IgorMi
Igor Micev
November 12, 2012 at 3:49 am
Hi,
If you have quite higher percentage of writes against reads, then RAID 5 is better than RAID 10.
However, you can download the following book by Jonathan Kehayias:
and decide what...
Igor Micev
November 11, 2012 at 9:48 am
I think constraints are good in general, although they make insert/update operations slower.
In some cases they can help the query execution plans execute faster. As much of the constraints...
Igor Micev
November 10, 2012 at 3:21 pm
shohelr2003 (11/5/2012)
1. I like to auto shrink my database. But I dont know how to do it.
2. My current DB size is 2 GB. I want that if my database...
Igor Micev
November 5, 2012 at 8:30 am
Hi,
You can read some of the articles here:
http://www.sqlservercentral.com/Search/?q=indexes&s=0&t=a
http://www.sqlservercentral.com/Search/?q=indexes&s=10&t=a
http://www.sqlservercentral.com/Search/?q=indexes&s=20&t=a
...
and it will become clearer for you about indexing.
Regards
IgorMi
Igor Micev
November 4, 2012 at 4:31 am
Perry Whittle (11/2/2012)
Firstly, TRUNCATEONLY does not apply to T-log files!
A wholesale shrink of all log files on the instance, and you believe this will be beneficial?
What do...
Igor Micev
November 2, 2012 at 3:46 pm
Nadrek (11/2/2012)
Igor Micev
November 2, 2012 at 3:41 pm
sqlfriends (10/30/2012)
If I setup a job to reorgnize an index, for example every 6 hours, should...
Igor Micev
October 31, 2012 at 10:29 am
PiMané (10/25/2012)
I was trying to get a "rule" for table naming but it's kind of hard to do it since every case is a casa...
You can have a table Customers...
Igor Micev
October 25, 2012 at 10:26 am
mpapali (10/25/2012)
Im new here (just joined your club)
I would like to do my SQL course basically on Administration and implementation.
Can anyone suggest a course and a good place...
Igor Micev
October 25, 2012 at 10:03 am
arthi.anan (10/24/2012)
I need to convert dt_of_birth [varchar] (15) which is in the format DD-Mon-YYYY to DD/MM/YYYYSo how do i give this in the stored procedure?
You can use the Date and...
Igor Micev
October 24, 2012 at 3:42 am
Viewing 15 posts - 1,021 through 1,035 (of 1,170 total)