Viewing 15 posts - 45,106 through 45,120 (of 49,571 total)
Looks like the developer was trying to list the index columns, but I don't think that's the right way. There's a much easier (faster) way in 2005, but if you...
August 13, 2008 at 8:52 am
6 million rows at say an average of 20 characters each (rough guess) means that query is pulling around 200 MB of data from the database and across the network....
August 13, 2008 at 8:44 am
Since there's no where clause, SQL has to read all the rows of the table. Indexes aren't going to help much. At best, you could change the exec plan from...
August 13, 2008 at 8:15 am
khushbu.kumar (8/13/2008)
ans1)Timeout expired.The timeout period elapsed prior to completion of the operation or the server is not responding.
2) approx after 50-60 sec
3)SP takes approx 3-4 in QA
3-4 seconds or...
August 13, 2008 at 8:13 am
I'm not sure about speeding the query up, it's based off system tables and system views which you cannot change.
That said, 50 indexes and 230 statistics on a single table?...
August 13, 2008 at 8:11 am
What's the security settings on the linked server "srvr1"?
(In object explorer, Server object -> Linked servers, right click that linked server, choose properties, go to the security tab)
August 13, 2008 at 7:07 am
PhilM99 (8/13/2008)
August 13, 2008 at 7:05 am
rosh (8/13/2008)
We need to write a stored procedure which works like a search engine.
Have you considered using FullText Search? This isn't an area that the relational engine excels in.
August 13, 2008 at 6:53 am
TEXT is an older datatype, is deprecated in SQL 2005 and will be removed in a future version. Many of the string functions (left, right, substring, replace, etc) don't work...
August 13, 2008 at 6:49 am
Schadenfreude-Mei (8/13/2008)
yeah think so. certainly they offer sunet desert camel rides etc.
Desert camel rides in Mauritius? Dubai, I could see, but Mauritius is a small tropical island. The only...
August 13, 2008 at 6:43 am
What does the procedure "ap_mtn_Sync_Table_data" do, and what are the security settings of the linked server that it is using?
August 13, 2008 at 6:37 am
In object explorer, right click the login, select properties, go to status, select disabled, click OK.
Depending where the server is and how you're accessing it, I do prefer windows authentication...
August 13, 2008 at 6:35 am
Mike Alfa (8/13/2008)
August 13, 2008 at 6:29 am
No need to start a second thread.
Please ditrect replies to the following thread, to keep all the discussion together
http://www.sqlservercentral.com/Forums/Topic551587-360-1.aspx
August 13, 2008 at 1:00 am
SQL Server has a built-in deadlock detector. When it notices a deadlock it will automatically select one of the processes involved in the deadlock and kill it. There's no need...
August 13, 2008 at 12:46 am
Viewing 15 posts - 45,106 through 45,120 (of 49,571 total)