Viewing 15 posts - 1 through 15 (of 16 total)
You could try using the convert function with the 3rd parameter (the style parameter) set to 1 - see Books on Line for info.
eg
declare @mymoney money
set @mymoney = 1234567890
select '$' +...
March 3, 2005 at 1:15 am
exec dbo.sp_helprotect null,'public'
November 17, 2004 at 3:54 am
You're talking about two different things here to me - shrinking the log file(s) is quite different to truncating the log.
Obviously if you truncate the log and use a recovery...
November 3, 2004 at 3:00 am
You could always use the DTS copy objects task - it gives you the copy with/without data option plus a lot more.
November 3, 2004 at 2:51 am
When I do this I usually load the new data into a staging table, I never load data directly to online tables, and then merge the old and new using...
November 3, 2004 at 2:49 am
Batch the update it'll run much faster.
See Microsoft's Tips and Tricks centre for help - it's an old trick that works real well.
http://www.microsoft.com/sql/techinfo/tips/development/updatebatches.asp
November 3, 2004 at 2:45 am
Hi, Not sure if this is the same thing but ...
There was an issue with the DTSUI.dll file in one of the SQL Server 2000 Service Packs - 3a I think - where...
November 3, 2004 at 2:40 am
Why not see what EM fires - set up a profiler trace on a db and then use EM to display the db in TaskPad view - it'll show you...
October 27, 2004 at 6:07 am
To id the collation issues try the script below. (if this doesn't appears ok post a reply with you email address and I'll email you the script).
Regards,
Stu
--===============================--
use master
go
if exists (select...
October 27, 2004 at 6:02 am
Try sp_helprotect
eg
sp_helprotect null,'UserName'
I don't believe you need special permission to run this command.
Got to love the old sybase sprocs.
October 27, 2004 at 5:49 am
What Jill says is 100% correct.
I noticed that the log shows you are in fact using a SEND MAIL task - DTSStep_DTSSendMailTask_2 (not an EXEC SQL task) so when you open the...
October 27, 2004 at 5:35 am
That's what you get when you exec the stored proc in the wrong database context - make sure you exec sp_helpsubscription in the context of the published database.
Ok here's what I've got...
July 5, 2004 at 5:15 pm
Easy! Simply add the @subscriber parameter.
Suggest you look sp_helpsubscription syntax in BOL -
sp_helpsubscription [ [ @publication = ] 'publication' ]
[ , [ @article =...
June 25, 2004 at 4:18 pm
try this - sp_helpsubscription @Publication = 'PubName'
Exec this in the published db and this will show you articles published and who is subscribered to them.
Obviously you can have one pub serving...
June 24, 2004 at 4:46 am
If you're getting the error as dialog pop up when in Task Pad view, simply change the view to Large Icon view and then back to Task Pad view for...
May 13, 2004 at 3:35 am
Viewing 15 posts - 1 through 15 (of 16 total)