Viewing 15 posts - 16 through 30 (of 233 total)
Have you tried this? Is it not working?
e.orig_dept_id = @orig_dept_id where @ @orig_dept_id = 2 this is supposed to what you are trying to do..
June 26, 2014 at 10:57 am
Why you want to integrate the orig_dept_id with the c.funded_Date?
Cant you do something like below?
Declare @year int
Set @year = 2014
Declare @orig_dept_id int
Set...
June 26, 2014 at 9:22 am
Let me ask you a question. What is the state of the second database? If I understood you correctly, then it is that your mirror is not connected to witness....
June 26, 2014 at 9:19 am
Or if you are using SQL Server 2012/2014 Enterprises Edition, you can have multiple readable replicas with Always on.
June 26, 2014 at 9:12 am
You need to put relevant where clause for "all the funded contracts that are in Service which is in the tlkorigdept table".
June 26, 2014 at 9:08 am
Is the server added as linked server? Looks like it is not.
Look at the following url and add linked server first.
http://msdn.microsoft.com/en-us/library/ff772782.aspx
Then the way to execute stored proc on linked server.
June 19, 2014 at 9:06 am
Also check if Instant file Initialization is enabled.
February 14, 2014 at 1:52 pm
When you say pretty much same it means identical or few things are different?
Do they have same # of processor & same amount of memory?
How much memory is allocated to...
January 29, 2014 at 9:33 am
Have you checked the execution plan for those procs?
What are the wait type and last wait type you see for them?
Some more info will help better.
January 29, 2014 at 9:30 am
Just keep in mind that Always ON is Enterprises only feature where as Mirroring is available for standard version also and work very well for HA purpose.
January 29, 2014 at 9:18 am
No. Back up does not defrag the DB.
Your QA is better because it is less busy than prod.
January 29, 2014 at 8:51 am
Is this issue between publisher and distributor or distributor or subscriber? Please check the error logs for distribution and log reader agent and see if you find anything?
Also just to...
January 29, 2014 at 5:56 am
If the default trace is enabled then you can get some information out of it.
January 23, 2014 at 1:43 pm
If you see slow sql in SQL server, it means there is something off in SQL. As Gail suggested it may be very well parameter sniffing issue. But again without...
December 27, 2013 at 8:32 am
When sql server is showing the signs of slowness have you checked to see if you run the same sql on query analyzer, how much time time it takes?
Also look...
December 27, 2013 at 8:06 am
Viewing 15 posts - 16 through 30 (of 233 total)