Viewing 15 posts - 46 through 60 (of 91 total)
I've created the following update query which joins to another table:
-- update new_ae.new_aeoffice with proper office name
update new_ae
set new_aeoffice = ado.OfficeName
from new_ae
join #AE_Domain_Office ado on new_ae.New_DomainName = ado.DomainName
The...
April 4, 2013 at 6:13 pm
"If you have no indexes, that's a table scan and SQL will apply both filters as it scans the table."
Gail - Correct me if I'm wrong but if I filter...
March 13, 2013 at 2:56 pm
Thanks for the feedback. In my first query please ignore the "top 10" in my select statement to keep my question more focused. Thanks for being detail oriented...
March 13, 2013 at 2:14 pm
Hi Lowell I used sp_UGLYSEARCH that you posted in the previous thread. The query ran for a few hours yesterday afternoon and was still running when I left work. When...
February 22, 2013 at 10:40 am
I think it's unfortunate that MS doesn't provide an automated tool to review a SS database for standards compliance. The nice thing about FXCop is that it's somewhat easier...
September 19, 2012 at 4:13 pm
Based on my initial scan of the threads the threads don't appear to reference any official MS standards.
MS provides an automated tool named FXCop to check a .NET/C# codebase for...
September 19, 2012 at 3:29 pm
@SS - Like I mentioned - I'm not referring to linked servers at all but only linked databases that reside on the same server. I wanted to get some...
September 13, 2012 at 3:43 pm
What if the core datamodel is for read-only purposes? Applications could each have their own database and connect to the core database for read-only purposes.
If all the databases reside on...
September 13, 2012 at 2:29 pm
Thanks for your feedback Luis. I think that should give me the information I need 🙂
September 7, 2012 at 1:24 pm
Can you think of any DBA tasks that a db_owner would not be allowed to perform on a database?
Basically, I have 1 server with 2 production databases. The org...
December 15, 2011 at 3:14 pm
saurabh.kaushik (11/13/2011)
November 14, 2011 at 1:51 am
Jeff Moden (11/4/2011)
sqlguy-736318 (11/3/2011)
Whenever I restore a database on my staging server I always restore a bak...
November 5, 2011 at 1:33 am
Ali Tailor (11/3/2011)
HiFile Indicants Log and data file, can you publish full script for more detail.;-)
Nevermind - I just noticed that the backup UI has a "Script" button which lets...
November 4, 2011 at 9:21 am
Viewing 15 posts - 46 through 60 (of 91 total)