Viewing 15 posts - 181 through 195 (of 233 total)
try this..
sp_droppublication @publication='publicationName', @ignore_distributor = 1
April 25, 2013 at 1:19 pm
You can create publication from backup and use sp_addarticle SP for adding articles.
April 25, 2013 at 1:06 pm
I would suggest that you figure out the offending query and tune it.
April 25, 2013 at 12:54 pm
Just use group by in last.
SELECT
[values].value,
SUM(CASE WHEN Q1 = [values].value THEN 1 ELSE 0 END) AS Q1,
SUM(CASE WHEN...
April 25, 2013 at 12:31 pm
Was this with compress backup enabled or not?
April 24, 2013 at 10:58 am
Thanks Lynn. Learned how to do this and will keep that in mind form next time.
April 24, 2013 at 9:39 am
Is the compress backup is enabled? Also have to tried local backup in off hours to see if that makes any differences.
I have close to 250 GB DB and...
April 24, 2013 at 7:53 am
Its running fine for me. It returned 29877 when I added CONVERT(numeric(14,2),Value) > 0 in where Clause.
My machine is
Microsoft SQL Server 2008 R2 (SP2) - 10.50.4000.0 (X64)
Jun...
April 24, 2013 at 7:43 am
Yes you are right. For Optimizer TVF is like black box.
Simple Single statement TVF can be in lined by SQL but for multi line TVF SQL Server will repeatedly
execute...
April 23, 2013 at 1:47 pm
Flushing the entire cache, I think is never a good idea. But what I was more interested in to see the execution plan plan for the slow running sql when...
April 23, 2013 at 12:48 pm
I think you must already have checked all these before but just wanted to ask?
Have you checked the execution plan for long running sqls/ stored procedures? It may be good...
April 23, 2013 at 11:30 am
It might help.
http://blogs.technet.com/b/askds/archive/2008/06/13/understanding-kerberos-double-hop.aspx
April 23, 2013 at 8:00 am
Lynn Pettis is right. But one variable here is the virtualization of SQL Server. If you have vMotion enabled and due to memory/ CPU ballooning if the Principal or...
April 19, 2013 at 1:51 pm
Here ...it might help you.
http://blogs.technet.com/b/mdegre/archive/2012/03/19/what-is-parameter-sniffing.aspx
April 19, 2013 at 1:27 pm
Viewing 15 posts - 181 through 195 (of 233 total)