Viewing 15 posts - 1 through 15 (of 16 total)
Moving the backup to your local machine should be easy if you have FTP access to any of the directory on the server.
Take a full backup of the db...
January 11, 2008 at 2:32 am
Ian's idea is good. But before anything can you confirm whether the database's recovery model is full by running the below query?
select databasepropertyex('DBNAME', 'recovery')
January 11, 2008 at 1:53 am
We used a tool called HP Open view in one of my previous companies...neat software and nearly monitors everything.
In my current company we use a tool called Argent for alerting
January 10, 2008 at 11:04 pm
Thank you!
Regards,
Karthik
December 19, 2007 at 8:28 am
To the best of my knowledge, there is no such feature by deafult in SSMS 2005. I guess there are 3rd party tools that might help you do this.
Scripting out...
December 19, 2007 at 3:49 am
Attach/Detach is definitely faster than backup/restore. The only thing I can think of is logins (but i guess this would happen with backup/restore too). Again, you can use the SSIS...
December 19, 2007 at 3:42 am
In Management Studio, Go to Tools->Options->Query Results->Results To Text and in Output format change it to CSV.
While executing the query, select Results to File (option in the toolbar) in query...
December 18, 2007 at 7:04 am
[font="Verdana"]Based on your situation use one of the below -
select id, max(workdate), max(val_unit) from empwork1
group by id
select e.id, e.date_e, e.val_unit from empwork1 e
INNER JOIN
(select id, max(date_e) as wd from...
December 15, 2007 at 6:52 am
There is a way in SQL-DMO where you can script out objects. Google it...
Once the scripts are generated, you can use bcp to pull and push the data. You would...
December 15, 2007 at 5:56 am
One more thing with linked servers is, you can issue queries WITH (NOLOCK)....
December 14, 2007 at 6:32 am
I will assume it is SQL 2005. If yes, right click on the database name in SSMS. Go to Tasks->Export Data.... and hopefully from here, it should be self-explanatory for...
December 14, 2007 at 6:29 am
[font="Verdana"]Right click on the database in SSMS. Go to Tasks->Generate Scripts.
Go with the defaults in the wizard till you come to the page to select object types. Select Stored Procedures....
December 14, 2007 at 6:25 am
[font="Verdana"]Is it possible to take a differential backup when a database is in simple recovery?[/font]
December 14, 2007 at 6:17 am
Hi,
I use Visio quite a bit for designing databases using ORM (Object Role Modeling). I find it really helpful. Obviously, there is scope for improvement. Hopefully, MS will...
October 6, 2006 at 6:47 am
Hi Andy,
This is a wondeful article for anyone who is new to SQL Server. When I started of with SQL Server I had major gaps in my understanding...
September 30, 2005 at 7:29 am
Viewing 15 posts - 1 through 15 (of 16 total)