Viewing 15 posts - 166 through 180 (of 245 total)
:w00t: :w00t: :w00t: :w00t: :w00t:
May be this might also work :w00t::hehe::cool:;-):-)
[Code]
--
use DB_TEST
create table employee (E_id int,Name varchar(50),Gender char(20),Age int,SALARY MONEY,constraint E_pk primary key (E_id),constraint...
May 21, 2009 at 4:37 am
CREATE PROCEDURE usp_job_history
@dateparam DATETIME
AS
SELECT dbo.sysjobhistory.server, dbo.sysjobs.name AS job_name,
CASE dbo.sysjobhistory.run_status
WHEN 0 THEN 'Failed'
WHEN 1 THEN 'Succeeded'
ELSE '???'
END as run_status, dbo.sysjobhistory.run_date, dbo.sysjobhistory.run_time, dbo.sysjobhistory.step_id, dbo.sysjobhistory.step_name, dbo.sysjobhistory.run_duration, dbo.sysjobhistory.message
FROM ...
May 20, 2009 at 11:58 pm
You can script it out......and run the script in the other server........
And always u can use import and export wizard.........
May 20, 2009 at 11:01 pm
Check out:
http://technet.microsoft.com/en-us/library/bb677622.aspx%5B/url%5D
http://msdn.microsoft.com/en-us/library/ms144267.aspx
http://blog.scalabilityexperts.com/2008/01/28/upgrade-sql-server-2000-to-2005-or-2008/
May 19, 2009 at 2:47 am
What is the result when you send test E-mail
Check if you have set agent properties->alert system->
mail system as database mail
mail profile the profile u have created for database mail.
May 18, 2009 at 2:37 am
Security best practices for a SQL Server installation
Each of the items that follow will make your system more secure and they are part of the standard security "best practices" for...
May 18, 2009 at 2:19 am
Check out this for High Availability options:
http://msdn.microsoft.com/en-us/library/ms190202(SQL.90).aspx
http://www.sql-server-performance.com/faq/cluster_log_shipping_replication_p1.aspx
May 15, 2009 at 2:27 am
Why don't you try other "high availability" options.
May 15, 2009 at 2:01 am
Can you tell me what exactly is the error.
When i exported empty tables using the export wizard i didn't get any error.
May 14, 2009 at 11:18 pm
Thanks Andrew
I created a one way trust and resolved the issue.
May 14, 2009 at 2:03 am
Viewing 15 posts - 166 through 180 (of 245 total)