Viewing 15 posts - 571 through 585 (of 1,170 total)
If your tempdb is on separate disks, then use it as much as possible.
You can also add some files each with equal size and equal auto-growth, and it will...
April 16, 2014 at 1:49 am
I've resolved the issue, simply, and want to share. I run
exec sys.sp_configure 'default trace enabled',0
reconfigure
and the timeout-type error is not being reported in the app log anymore.
Regards,
Igor
April 8, 2014 at 2:15 am
Hi
You can use this code for example
if object_id(@tablename) is not null
begin
print 'exists...'
--do other steps
end
else
begin
print 'doesn''t exist...'
--do other steps
end
Regards,
Igor
April 5, 2014 at 3:18 pm
Check also the statistics of the tables that are taking part in the view.
Regards,
Igor
April 5, 2014 at 3:02 pm
Reading chapter 4 - Memory management of book http://www.sqlservercentral.com/articles/books/76296/
will probably help you with wider scope of understanding some matters.
Regards,
Igor
April 5, 2014 at 2:58 pm
Hi
1400+ virtual log files is a high fragmentation into the log file(s).
These three articles should be enough to understand how to configure your log
http://www.sqlskills.com/blogs/kimberly/transaction-log-vlfs-too-many-or-too-few/
http://www.sqlskills.com/blogs/kimberly/8-steps-to-better-transaction-log-throughput/
http://www.sqlskills.com/blogs/paul/bug-log-file-growth-broken-for-multiples-of-4gb/
Regards,
Igor
April 5, 2014 at 7:04 am
Hi
No, you cannot go your way - according to http://msdn.microsoft.com/en-us/library/ms190273.aspx
You can go with the ADDs and DROPs of columns since there is [ ,...n ] in the syntax
Regards,
Igor
April 3, 2014 at 12:16 pm
🙂
I'd have gone with the last option if I haven't reminded of this blog http://blogs.technet.com/b/microsoft_blog/archive/2014/03/18/sql-server-2014-released-to-manufacturers-will-be-generally-available-april-1.aspx
April 1, 2014 at 3:17 am
Today, you have everything on the i-net, you only need to know how to search for something and how to develop an approaching strategy to suppress it . There are...
March 31, 2014 at 3:43 pm
Hi,
Should you have put the second expression of the Exists() into brackets?
SELECT
[Project Dim].[Project Title].Children on 0
FROM (
SELECT
Exists([Mandant Dim].[Mandant Name].CHILDREN,
{[User Dim].[Username].&[Peter], "User Mandat Fact"}) on 0
FROM [Security Concept])
Second, what about...
March 31, 2014 at 10:06 am
Hi,
1. You don't have to add all fields/columns, unless you must to. Indexed view is very close to table. It's biggest utility comes when the goal is to optimize aggregate...
March 27, 2014 at 2:37 am
Carefully designed question. Thanks.
"The revert operation failed" is the essential in the question.
I usually have an issue when other sessions are alive while trying to restore from a snapshot.
Regards,
Igor
March 21, 2014 at 2:42 pm
Nice question! I love filtered indexes. They are very useful for the data mining algorithms.
Thanks
Igor
March 21, 2014 at 2:26 pm
@RDBMS (3/16/2014)
So according to your suggestion, the index would be:CREATE INDEX IDX_LOCATION_DATE
ON Location_Id, Transaction_Date
INCLUDE (Vertical_ID, Customer_Id)
After creating this index, how can I determine whether it is performing well or not?
You...
March 16, 2014 at 12:13 pm
Viewing 15 posts - 571 through 585 (of 1,170 total)