Viewing 15 posts - 346 through 360 (of 387 total)
Chris,
Thanks, I will give Delaney volumes a look up on Goggle.
Andrew
August 4, 2005 at 9:53 am
I would check and see if they have tightened the hatches on mdtc as on xp and wk2003, search for xp sp2 mdtc on google thats where I found articles...
July 28, 2005 at 2:06 pm
you could also use smtp mail using the sp and dll available at http://www.sqldev.net/xp/xpsmtp.htm
July 28, 2005 at 1:13 pm
The file needs to be empty before it can be dropped, use this code and change the relevant object details:
DBCC SHRINKFILE ([YourTransactionLog] , EMPTYFILE)
USE master
GO
ALTER DATABASE YourDatabase
REMOVE FILE [YourTransactionLog] ...
July 25, 2005 at 1:22 pm
I would check and see that the file is not set to read only
July 5, 2005 at 1:00 pm
cant you use this syntax
insert
into beta.work.dbo.Table_backup
select * from _all_props
June 29, 2005 at 11:54 am
You could use string functions to seperate the string, but from experience this is a pain when you have ambiguous addresses ie: the larks 25 something street.
A better solution is...
June 28, 2005 at 10:51 am
I don't believe you can script this via a wizard the way you can right click replication and choose to script creation. However, the whole setup is done through stored...
June 9, 2005 at 3:34 pm
Why is it the discussion a dba has with a developer always seems to end in someone in management deciding that the dev guy is right. If a DBA was...
June 7, 2005 at 3:07 pm
I am assumimng that you are in a high transaction enviroment and presumably large transaction logs when backed up. Why not back up the logs on a more frequent basis,...
June 7, 2005 at 2:30 pm
I am thinking that by droping and recreating the sp you are effectivley recompiling it. The execution plan it is using is probably out of date, using old stats etc....
June 6, 2005 at 9:37 am
Why not create a dummy table and create stats and then rename, that should give you what you need to know
June 1, 2005 at 3:29 pm
have a look at this article:
http://www.databasejournal.com/features/mssql/article.php/3492046
Hopefully it should help
May 27, 2005 at 11:39 am
are you using an odbc connection, is that connection present on the server?
May 24, 2005 at 3:03 pm
Viewing 15 posts - 346 through 360 (of 387 total)