Viewing 15 posts - 31 through 45 (of 529 total)
Hello,
This error can also occur if the INBOX is full for the account running SQL Mail!
Regards,
Hanslindgren
October 2, 2008 at 1:57 am
Hi,
Well, XML is not thought for performance. If you are processing 7000+ rows and you want real performance, you should use CSV files or similar files with much less overhead....
September 29, 2008 at 9:01 am
Maqsood Ahmad: A sleeping connection at most cosumes a couple of KB of memory (totally neglible). If your application is not restarted then the connections will linger and save you...
September 6, 2008 at 1:58 am
Maqsood Ahmad:
Why do you think that SQL Server would destroy your SPIDs? Having SQL Server doing that sounds rather absurd...
Hanslindgren
September 5, 2008 at 12:41 am
And to summarize the topic on BOL:
BACKUP DATABASE NorthWind
TO DISK='C:\NorthWind.20080515.SQLBackup.Full.bak'
May 15, 2008 at 5:57 am
This is also an excellent link: http://www.sommarskog.se/arrays-in-sql-2005.html#CSV
May 15, 2008 at 5:55 am
TheSQLGuru (5/14/2008)
May 14, 2008 at 8:01 am
GilaMonster (5/12/2008)
Is the DB set to autoclose?
I just wanted to point out that if the DB is being hit 600 times per minute no SQL Server Instance would close the...
May 14, 2008 at 2:37 am
Ensure that your constraints have/are created using the WITH CHECK option. If not, SQL Server will look att all your tables even if they do have corretc constrains on them....
May 14, 2008 at 2:28 am
toniupstny (4/29/2008)
April 29, 2008 at 11:17 am
matt stockham (4/28/2008)
April 28, 2008 at 9:32 am
I had these problems once with a coupld of tables.
I divided the data_space with the number of rows and got an absurdly high value.
I tried to find out why but...
April 28, 2008 at 8:18 am
Or use SET CONCAT_NULL_YIELDS_NULL OFF in your SP...
April 28, 2008 at 8:11 am
george sibbald (4/22/2008)
I can think of no way to reallocate which is the primary filegroup.
possibly....
BACKUP DATABASE
add another file to the primary filegroup on your other drive
use dbcc shrinkfile(current primaryfile,emptyfile)
alter database...
April 28, 2008 at 8:00 am
Jeff Moden (4/28/2008)
Zactly...
Just wanted to point it out to help our friends/poster that might not know what system configuration which is most likely to cause this effect...
Regards,
Hanslindgren
April 28, 2008 at 7:19 am
Viewing 15 posts - 31 through 45 (of 529 total)