Viewing 15 posts - 4,186 through 4,200 (of 4,271 total)
Are you asking about xp_sendmail? In SQL 2005.. While it still exists, let me be really clear.
DO NOT USE IT UNDER ANY CIRCUMSTANCES!
(climbing down off soapbox..)
It...
July 2, 2009 at 2:21 pm
Perhaps you should spend some time working with some of the examples, maybe even see if there is some data at work that you might be able to work with,...
July 2, 2009 at 2:13 pm
The indexing operation was largely a read operation, depending on the memory of your server and the size of the table it could have largely been in memory, which would...
July 2, 2009 at 2:09 pm
Does the login that SQL is running under have access to that share/path/file? Or is SQL running as local system? If it is then it will NEVER be...
July 2, 2009 at 1:00 pm
And you are sure that the sql server exe is using all the processor?
Depending on your server configuration and hardware, it is possible for even 1-2 connections to nearly monopolize...
July 2, 2009 at 12:58 pm
Firewall on the server maybe? Check to see what ports it is listening on..
http://technet.microsoft.com/en-us/library/cc966526(printer).aspx
Says that the port it listens on by default is: 2383..
CEWII
July 2, 2009 at 12:55 pm
it is a blank which can be test as fieldname = '' < that is 2 single quotes.
If you absolutely don't want that to happen you could add a check...
July 2, 2009 at 12:50 pm
I can't see anything that is obviously wrong..
But given the error message I would look specifically at the connection: PCIDI1S and "Win Oasis"
Also you are using two different connection types...
July 2, 2009 at 12:04 pm
Processor count and speed.
Memory available onn box and memory allocated to SQL.
Other applications installed on server.
Other databases on server.
Drives (local, iSCSI, SAN, NAS) and underlying structure (RAID5, etc.)
Layout, drive for...
July 2, 2009 at 11:58 am
Is this a one shot or something you will be doing a lot?
If it is a one shot then the best way is to generate a full backup and copy...
July 2, 2009 at 10:40 am
I think you could accomplish this using a rule in Outlook, it isn't NEARLY as easy as what you are trying to do this way, but I see your goal..
CEWII
July 2, 2009 at 10:36 am
I think I *might* see the problem.. default instances of SQL use port 1433, express usually doesn't without you doing something intentionally, this part of the connection "174.0.11.10,1433" is...
July 2, 2009 at 10:34 am
I can't stress how much I don't like replication, I do however realize that it does have its place. It sounds like log shipping is a better fit of...
July 2, 2009 at 10:28 am
SELECT * FROM msdb.dbo.sysmail_principalprofile
There is a column IsDefault..
You can get a list of profiles with sysmail_help_profile_sp.
CEWII
July 2, 2009 at 8:03 am
Following the execution of the raiserror sproc you should look at @@ERROR
It would look like this:
IF ( @@ERROR = 0 )
BEGIN
EXEC SPMy_wrapper_insert
END
CEWII
July 2, 2009 at 7:55 am
Viewing 15 posts - 4,186 through 4,200 (of 4,271 total)