Viewing 15 posts - 226 through 240 (of 545 total)
What exactly are you trying to find out ??
January 22, 2009 at 4:25 am
This post has been posted on 2 locations 🙂
January 22, 2009 at 4:22 am
Yes it is possible in SQL server, For an example, I run a SP, that will take 3 parameters ad produce 5 Best matches for the parameters provided, this SP...
January 22, 2009 at 4:20 am
that's right Andrew, but how much large the table is, if its properly designed and indexed and the SP is tuned, then this is a small task, as you said...
January 22, 2009 at 3:53 am
Check connections from studio and the reporting server, if there is a problem with SP, they try running on SQL and check the time, there must be any index missing,...
January 22, 2009 at 3:49 am
I have faced the same problem, all you have to do is to wait until SQL completes the operation, if its shared by some other process try to kill that...
January 22, 2009 at 3:42 am
100 k/Day not that much data, this shouldn't cause any problems, the way you do is fine, other ways are having a backup and restore, which will leave you with...
January 22, 2009 at 3:35 am
28 Million records, that's a huge table for this process, i would suggest to take a backup, since i can remember once when i did this sort of operation, SQL...
January 22, 2009 at 3:05 am
How big are the transactions, how often you are running this SP, that moves data from production to reporting, can you post the SP so we can see if there...
January 22, 2009 at 2:54 am
I had one bug on log shipping with SP2, that was been fixed with SP3, apart from that i have installed SP3 on my warm server, dint roll out...
January 22, 2009 at 2:46 am
Hi
What is the database recovery model ???
January 21, 2009 at 10:55 am
http://www.microsoft.com/Sqlserver/2005/en/us/compare-features.aspx
Hope this information helps 😀
January 21, 2009 at 9:19 am
how about
select top 4 * from table order by newid()
January 21, 2009 at 9:06 am
just out of curiosity, which version has got this XP, i cant see this on SQL 2005 😀
January 21, 2009 at 9:01 am
Viewing 15 posts - 226 through 240 (of 545 total)