Viewing 15 posts - 151 through 165 (of 440 total)
May it be that you are looking at 32-bit in one of the locations, and 64-bit in the other? As far as I remember, the 32-bit and 64-bit client libraries...
February 29, 2012 at 3:00 pm
I don't remember how the CPU load was, but I once had a scenario where the backup all of a sudden needed more than 24 hours to complete. In my...
February 29, 2012 at 2:58 pm
If you perform log backups, this will of course allow SQL Server to reuse inactive portions (VLFs) of the log file. What I meant is that smaller transactions alone will...
February 29, 2012 at 7:53 am
Just checking: Do I understand you right that you attempt to switch to simple recovery model during this process? Splitting it in several smaller transactions does not have the intended...
February 29, 2012 at 7:03 am
First of all, I think the security risk of instant file initialization is a bit misunderstood. Let me try to explain how it works.
On a single instance server, any members...
February 29, 2012 at 12:03 am
First of all, I want to thank everyone for the good feedback.
No matter if Lock Pages in Memory is enabled or not, SQL Server will attempt to release memory on...
February 28, 2012 at 3:15 pm
Winfried Terlinden (2/28/2012)
February 28, 2012 at 9:40 am
If I don't recall something wrong: are the two instances running under the same domain account? Have you verified that this account has sufficient permissions?
February 7, 2012 at 4:04 pm
Gianluca Sartori (1/13/2012)
okbangas (1/13/2012)
so I have to create the table on before hand. 🙂Or use dynamic SQL. That would work as well.
Thought of that one too, but don't like...
January 13, 2012 at 2:39 pm
Peter Brinkhaus (1/13/2012)
okbangas (1/13/2012)
I'll have to explicitly create the table then.Not necessarily.
My real life scenario is far more complex than this sample code, whose sole purpose were to demonstrate...
January 13, 2012 at 7:30 am
Gail: Don't you ever work? It seems that your response time in this forum is pretty impressive 😀
January 13, 2012 at 7:07 am
Thanks both of you. Nice to know the bits and pieces about how things work. I'll have to explicitly create the table then.
January 13, 2012 at 7:04 am
Personally, I've never had any problems with having lock pages in memory configured, but I've reduced the paging quite a bit, and thus got improved the performance of the server....
January 3, 2012 at 6:02 am
The error message tells you exactly what is wrong: There are NULLs in your column, and the new table definition does not allow nulls. Assign a value the column where...
January 3, 2012 at 4:08 am
Is all these steps running in a single transaction? Statistics is not updated within a transaction, so all your statistics is basically saying there is no records in this table,...
January 3, 2012 at 3:19 am
Viewing 15 posts - 151 through 165 (of 440 total)