Viewing 15 posts - 226 through 240 (of 347 total)
if exists (select *
from sysobjects
where id = object_id(N'[dbo].[sp_SQLSMTPMail]')
and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure [dbo].[sp_SQLSMTPMail]
GO
SET QUOTED_IDENTIFIER OFF SET ANSI_NULLS ON
GO
Create Procedure dbo.sp_SQLSMTPMail
...
April 21, 2004 at 10:54 am
ranec, I think no having to reboot sql or the server itself is the most benefit. At my shop we are still using sql-mail, but with sql 2005, we have to...
April 21, 2004 at 10:49 am
There are pro and con for using sql-mail. If sql-mail really die, you have to stop and re-start sql server. I have never heard of smtp mail problem in which...
April 21, 2004 at 9:58 am
I've done a couple of downgrade. Here is what I usually do when I need to do one:
1.backup all databases on the server to be downgrade.
2. Stop SQL Server. Copy...
April 20, 2004 at 11:18 am
bcp databasename.dbo.salesperson_dimension out salespersonfile.txt -T -SserverName -c -n
sorry I have never try queryout option.
mom
April 19, 2004 at 10:28 am
From BOL:
ALTER TABLE table
{ [ ALTER COLUMN column_name
{ new_data_type [ ( precision [ , scale ] ) ]
[ COLLATE < collation_name > ]
[ NULL | NOT...
April 13, 2004 at 2:26 pm
I started out as a SQL Developer, get my feet really wet, and then became a Junior DBA with the help of the in-house DBA's guide. He was a great...
April 12, 2004 at 3:28 pm
Backing it up directly to tape will slow your restore process. Here we backup to disk, and then veritas back up our backup to tape.
mom
April 12, 2004 at 1:53 pm
Here is another suggestion. Ask your dba some questions like how do I do this stuff? I need this stuff, how do I create it? This is how I learn, ...
April 12, 2004 at 11:42 am
I would like you to restart your server.
Here is 2 suggestion. Go to add/remove program and try to remove sql server from there. If it is complete then go to...
April 12, 2004 at 11:25 am
I hope your crystal report is not using sa for the login... regardless of how strong your password is, if you let this password be kept on a file somewhere,...
April 7, 2004 at 12:08 pm
75 license is only for 75 concurrent connections. Regardless if you have 5 or 10 people using it, if you are not closing your connection properly, you will have lots...
April 7, 2004 at 11:56 am
You could also set the baup folder to only allow administrators group and the sql service account to have full access, and then remove everyone out of that backup folder. ...
April 7, 2004 at 11:48 am
Here is the most simplest way, set all your user to use pubs as their default database. You could change this by using:
sp_defaultdb [ @loginame = ] 'login' ,
[...
April 6, 2004 at 5:32 pm
put your backup on a cd and load that cd on the new system. At restore, you could point it to the cd.
mom
April 6, 2004 at 1:57 pm
Viewing 15 posts - 226 through 240 (of 347 total)