Viewing 15 posts - 16 through 30 (of 74 total)
Try this
declare @dbname varchar(10)
declare @sqlstr as nvarchar(500)
set @dbname = 'master'
set @sqlstr = 'select * from ' + @dbname + '.dbo.sysfiles'
exec sp_executesql @sqlstr
Hope this helps
August 8, 2006 at 11:07 pm
This might help
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/replsql/replover_694n.asp
August 15, 2005 at 11:56 pm
Depends on what you are wanting to do. If this is for a drp solution I suggest you look at using log shipping. If it for reporting then perhaps you...
August 15, 2005 at 6:39 pm
Good article but I have to agree with most of the folks out there
backup and restore is the way to go.
By the way how do you attach a database with...
July 31, 2005 at 10:15 pm
Go to startup parameters dialog box in enterprise manager
change the default location for the errorlog to the new location
the existing parameter will start with -e
restart sql server ( out of...
July 18, 2005 at 8:43 pm
Need more info. are you attempting a database backup or exporting the data to a file such as excel or csv?
July 14, 2005 at 10:54 pm
What service pack is your sql server?
Had this problem a long time ago on sp2. Upgraded to
sp3a has since gone away.
By the way if your after a great smtp...
June 28, 2005 at 12:53 am
It sounds like this database is using transactional replication.
Check and make sure that this process is running sucessfully by the sounds of thinks
it's not. You might want to find...
June 28, 2005 at 12:43 am
Fantastic article. The great thing about being human we make mistakes and then we learn from them.
Be nice if there was an undo command or button in SQL server 🙂
June 16, 2005 at 6:27 pm
Smart and simple.
I also find using sysjobs_view useful in place of sysjobs. Especially if you are managing more than one server.
The extra colum originating_Server can tell which server the job...
May 16, 2005 at 1:16 am
Great article and a great product. I have been using this product for a couple of years now and it has saved us plenty!!
May 11, 2005 at 12:28 am
Great interview. In particular the comments on the Quest purchase of Imceda. Lets hope it doesn't go that way. Part of reason it's a great product is the support. Hate...
May 10, 2005 at 7:01 pm
I found this kb article on using the IF update(column name)
March 21, 2005 at 7:16 pm
Try this
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/adminsql/ad_1_server_4uuq.asp
November 21, 2004 at 11:40 pm
Thanks Steve.
I have dbcc inputbuffer and fn_get_sql () on the brain!
I meant dbcc indexdefrag
August 19, 2004 at 4:39 pm
Viewing 15 posts - 16 through 30 (of 74 total)