Viewing 15 posts - 6,256 through 6,270 (of 49,571 total)
sudip.k.datta (4/2/2015)
But I am very new to SQL Server administration and from DBA team I have been told to alter non-clustered indexes to clustered for a list of tables.
Go back...
April 2, 2015 at 7:11 am
sandeep1553 (4/2/2015)
Did you get the answer for this question. Because I am facing the same problem .If got the answer, please let me know
Error 50000 is a user-defined error....
April 2, 2015 at 7:06 am
Probably not, but without seeing the proc and having more details on the process, hard to say.
Just wrapping something in a transaction is seldom the answer.
April 2, 2015 at 6:53 am
Please don't post multiple threads for the same problem.
No replies to this thread please. Direct replies to http://www.sqlservercentral.com/Forums/Topic1673756-2799-1.aspx
April 2, 2015 at 5:25 am
This is one way, there are others
SELECT * FROM CompanyEmployeeArchive cea WHERE NOT EXISTS (SELECT 1 FROM CompanyEmployeeArchive c WHERE c.Employees >= 100 AND cea.Company = c.Company)
April 2, 2015 at 5:23 am
The name implies that there's a database named utils and within that database, in the dbo schema is an object called 'deletelist'. Check your server. As for what it is,...
April 2, 2015 at 3:47 am
mister.magoo (4/1/2015)
I see two choices.1. It is April 1st.
2. You win the prize for worst query ever.
My guess is that that is a cardinality estimation error, either from poor stats...
April 2, 2015 at 2:52 am
Grant Fritchey (4/1/2015)
We don't start talking about how evil a query is until it breaks at least 10 printed pages.
My worst query procedure so far is 95 printed pages using...
April 2, 2015 at 2:51 am
inserted = new rows for an insert and new values for an update.
deleted = deleted rows for a delete and old values for an update.
April 1, 2015 at 9:36 am
Yes, they need to be licensed.
If this user is doing development work, they can be developer edition, if the user is doing work with real data for business purposes,...
April 1, 2015 at 9:34 am
Grant Fritchey (4/1/2015)
SQLRNNR (4/1/2015)
Who remembered to do an April Fools post today?No inspiration for one this time.
No inspiration, no enthusiasm, no time.
April 1, 2015 at 9:19 am
New Born DBA (4/1/2015)
where this uncommitted transaction come from?
Transactions which were in progress during the backup.
Q. Why can't we have both DB online in log shipping? Is there...
April 1, 2015 at 8:43 am
ALTER INDEX is a DDL operation, therefore it will be making changes to the system tables, hence needing locks on the rows in the underlying metadata. Without seeing the deadlock...
April 1, 2015 at 7:31 am
sufstuff01 (4/1/2015)
April 1, 2015 at 7:07 am
Abhijit, get the following book, read through chapter 1 to start and apply what it discusses to your system. That should get you at least to the point of being...
April 1, 2015 at 5:53 am
Viewing 15 posts - 6,256 through 6,270 (of 49,571 total)