Viewing 15 posts - 151 through 165 (of 187 total)
I am curious if using the third party tools makes any difference with this. One of our systems essentially does this every night, since we start our Fulls at...
January 30, 2009 at 9:40 am
SQL Magazine had a pretty nice article about a good way of doing that, in a way that I think puts out a nice format
http://www.sqlmag.com/Article/ArticleID/96056/sql_server_96056.html
if you can not get it...
January 27, 2009 at 12:09 pm
You should check out the Scripts section of this site.
http://www.sqlservercentral.com/scripts/Index+Management/31652/
This particular one scripts the indexes out as a create. I find it to be a more useful type of...
January 27, 2009 at 8:54 am
If what you have above is the only sort of thing you are doing (meaning you are printing off individual statements and not record sets) then you can substitute the...
January 27, 2009 at 8:26 am
A few things to try and you will invariably have to check this on both the server connecting and the server you are connecting to.
First go to Add/Remove Programs-->Add/Remove Windows...
January 27, 2009 at 7:48 am
If you are not already somehow tracking this on your own, I believe that the only way (that I know of anyway) is to go to the error log to...
January 26, 2009 at 3:30 pm
Within the installation you have to do the Custom selection (can not think of the exact screen on install but essentially you have the option to accept defaults or do...
January 26, 2009 at 3:04 pm
It is hard to tell what the issue is from just looking at the plan right here, but in the past when I have had issues with performance on linked...
January 26, 2009 at 2:50 pm
What you have here will work just fine. You can just make a call to msdb..sp_send_dbmail (assuming you have database mail set up) and send whatever information you...
January 22, 2009 at 3:54 pm
cherie (1/15/2009)
January 15, 2009 at 12:40 pm
cherie (1/15/2009)
Freeing Procache will cause query performance to go down in the beginning, Isn't it..
That really depends. Freeing the proccache just removes the plans from cache, so when you...
January 15, 2009 at 12:15 pm
āM.idt_Pā has Non-Cluster Index on it, if I remove this from WHERE, query runs fine, otherwise takes 5 times longer. I have tried couple of options but no use.
Please let...
January 15, 2009 at 12:11 pm
This is not horribly clever and it certainly requires a second pass through but it works.
select t.IDName
from (select ID, MIN(cost) mincost
from #tmp
group by id) min
join #tmp...
January 15, 2009 at 8:10 am
It may be worth looking at the Effective Permissions, just to be sure that whatever permissions are on that folder has not somehow being overwritten by a previous directory. ...
January 14, 2009 at 12:33 pm
Script it out to be
alter table yourtable
alter column yourcolumn datatype null
and you should not have that same problem.
I have had that same issue when using the interface before. ...
January 14, 2009 at 12:28 pm
Viewing 15 posts - 151 through 165 (of 187 total)