Viewing 15 posts - 886 through 900 (of 1,170 total)
Hi,
Rebuilding indexes will not affect the replication database. You can do it offline and online as well.
Regards,
IgorMi
July 12, 2013 at 5:45 am
Nice question!
What if you already have a master key that is used by a certificate aimed for another database (dbA) on the instance you're moving the dbB?
Just for clarification.
I think...
July 12, 2013 at 4:20 am
Hi,
Your two nonclustered indexes are not used by your select * query. Use clustered index instead. You can extend your nonclustered indexes with INCLUDE(col1,col2,...coln) but you have to add a...
July 7, 2013 at 12:48 pm
shyam00 (7/5/2013)
Is there any way to tackle my scenario mentioned here.?
I need to combine (UNION) two non related derived tables and create an indexed...
July 5, 2013 at 12:57 pm
Hi
Maybe following link https://www.simple-talk.com/sql/database-administration/gail-shaws-sql-server-howlers/ will enclear some things to you.
July 5, 2013 at 8:37 am
Hi,
OUTER JOINs are not supported in Indexed views because rows can logically disappear under some update operations in the base tables.
Regards
IgorMi
July 5, 2013 at 4:41 am
Hi,
Use PARTITION = partition_number to rebuild the index on the specified partition or PARTITION = ALL to rebuild it on all partitions.
If you want to design your own script then...
June 18, 2013 at 3:59 pm
Hi,
The transaction log has to be configured well too. Growing files is pretty expensive operation.
Do you care about the VLFs count? The following link can help you configure it well...
June 16, 2013 at 6:20 am
Hi,
Try this link could help you http://stackoverflow.com/questions/935018/hide-sql-database-from-management-studio
but see the comments, and this https://connect.microsoft.com/SQLServer/feedback/details/273830/need-view-definition-permissions-per-database
as well.
June 12, 2013 at 3:34 am
Hi,
@sqlsurfing: Thank you for your links. I knew and read those articles/posts. I was looking to find something concretely for the VLFs' different size, and probably like Gail said it...
May 31, 2013 at 1:54 am
Ok. I thought you use another query.
Then, are the settings (ANSI_NULLS, QUOTED_IDENTIFIER, ...) for your connection (OLE DB, ODBC) identical with the settings on both servers?
Regards
IgorMi
May 24, 2013 at 7:15 am
Hi
You can catch the execution plans for the query on both servers and comparing them you'd probably come up to the reason why their duration differ.
You'd better clean the cache...
May 24, 2013 at 6:26 am
Hi,
The plan tells that everything is just normal.
What about MAXDOP and the Cost threshold for parallelism? Every one node in the sqlplan is marked to use parallelism.
Is it same every...
May 21, 2013 at 4:30 pm
Viewing 15 posts - 886 through 900 (of 1,170 total)