Viewing 15 posts - 1,681 through 1,695 (of 2,612 total)
never tread lightly....speak your mind.
May 2, 2008 at 8:46 am
Yes, the number of rows is not the same. You get some additional log entries in the transaction log to go with inserts. That is not what the...
May 2, 2008 at 8:34 am
You could replace the T-SQL in the sp_send_dbmail procedure with a call to your mail client and you should find that SQL does not know that you have bypassed SQL...
May 2, 2008 at 8:25 am
Ok, that being said, I guess in my opinion, the answer is that the idea is not technically sound and you should try to come up with another solution.
From a...
May 2, 2008 at 8:01 am
What is your third party mail application using if it is not using SMTP or POP3?
May 2, 2008 at 7:50 am
You can see this yourself.
Create a new database and set the recovery model to full.
Add a single table with one INTEGER field.
Insert a record into your table.
Run: DBCC LOG(' ',3)
You...
May 2, 2008 at 7:48 am
I used to work with a guy who had created an access database with a bunch of linked tables in it so he could use the query builder in access...
May 2, 2008 at 7:36 am
It is just what it says - in one of your components you are trying to insert, update, or join by a unicode field to a non-unicode field (or the...
May 2, 2008 at 6:46 am
SSIS does not return much to the job history. You really have to use logging to get anything useful.
May 2, 2008 at 6:39 am
There are several differences, but (arguably) the most important difference is that a function is designed to return something other than just an error code.
May 2, 2008 at 6:38 am
You need to configure logging in your package and get the actual SSIS error messages.
May 2, 2008 at 6:32 am
As long as you have not specified to not use particular processors, MS SQL will use processors as it needs to. You do not have any control over it...
May 1, 2008 at 1:56 pm
Some of these work ok with SQL server and some do not. Talk to your SAN vendor and make sure it is MS SQL certified and for the versions...
May 1, 2008 at 6:02 am
Here is the MS document on it:
http://www.microsoft.com/sql/howtobuy/multipleinstances.mspx
The basic idea is that (for SQL 2005) multiple instances doe not require individual licenses. Multiple virtual servers do require their own licenses.
May 1, 2008 at 6:00 am
The first thing you need to do is examine the update. I would be very concerned about any single transaction that takes 15 minutes on a live production system...
May 1, 2008 at 5:30 am
Viewing 15 posts - 1,681 through 1,695 (of 2,612 total)