Viewing 15 posts - 61 through 75 (of 496 total)
June 26, 2014 at 8:24 am
Please read the article in my signature about posting these types of questions. After you have supplied the table definitions and sample data please provide the code that you currently...
June 25, 2014 at 11:24 am
Nope. Mirroring is a single Principal and a single Mirror. Other options would be replication, log shipping, SAN tools (replication, etc).
June 25, 2014 at 11:07 am
This is from BOL:
Important note Important
Always use SQL Server tools such as SQL Server Configuration Manager to change the account used by the SQL Server or SQL Server Agent services,...
June 25, 2014 at 11:02 am
June 25, 2014 at 10:17 am
Try adding "WITH" prior to (NOLOCK) i.e. WITH (NOLOCK)
June 25, 2014 at 9:24 am
terry999 (6/24/2014)
Is it ok to periodically shrink the ArchiveDB? will it get fragmented and cause later problems
You could periodically shrink the database, but I would run a reindex operation after...
June 24, 2014 at 9:59 am
You compare Funded_date to the following:
- Greater than or equal to - DATEADD(MONTH, DATEDIFF(MONTH, 0, GETDATE())-5, 0) = 2014-01-01
- Less than - DATEADD(MONTH, DATEDIFF(MONTH, -1, GETDATE())-1, 0) = 2014-06-01
-...
June 24, 2014 at 9:21 am
Have you tired to reinstall SSMS? If not, you might want to try that.
The other question I have is why are you using "Edit Top 200 Rows"? Why not use...
June 24, 2014 at 8:30 am
Adding more TempDB files will help with SGAM and PFS page contention. I would start with this post[/url] to make sure that you are not seeing contention during the operation....
June 24, 2014 at 8:23 am
dndaughtery (5/8/2014)
May 8, 2014 at 11:25 am
ASYNC_NETWORK_IO usually doesn't mean that you are waiting on the network. It usually means that the application is processing the data one row at a time or simply doesn't acknowledge...
May 8, 2014 at 11:23 am
Take a look at this thread and see if it helps: http://www.sqlservercentral.com/Forums/Topic604406-146-1.aspx
May 8, 2014 at 11:18 am
1. Can you update the spoom sproc to accept a Customer parameter and just pass it into the stored proc and have it do the filtering?
2. If not, you could...
May 8, 2014 at 11:16 am
For BI related stuff there is the Contoso sample database: http://www.microsoft.com/en-us/download/details.aspx?id=18279
April 28, 2014 at 9:13 am
Viewing 15 posts - 61 through 75 (of 496 total)