Viewing 15 posts - 391 through 405 (of 790 total)
ifx,
In regard to...
quote:
SQLServerAgent stops firing Operating System jobs.I had to re-create the schedules that were affected.
August 19, 2003 at 3:15 am
I can't replicate it (also SQL2k Sp3a on Win2003). It opens at the default backup location.
What's showing in the "File Name" field before you click on the...
August 19, 2003 at 3:10 am
The destination file doesn't have to exist. In my testing I created one from the DTS package.
Cheers,
- Mark
August 19, 2003 at 2:59 am
Gregory,
You'll be able to do so. Even though Excel isn't installed, the Excel driver should be there.
For most consistent results, hop onto the server in question (either locally...
August 19, 2003 at 1:26 am
I don't think so. Just off the top of my head, I think you'll get Enterprise Manager users screaming.
I'm sure the repercussions are a lot more serious than that,...
August 18, 2003 at 8:01 pm
I would try wrapping the linked server bit in a transaction and see how that goes.
Failing that, you may want to seek the help of someone who actually knows what...
August 18, 2003 at 3:13 pm
Another option is to let SQL's built-in functions do it for you....
declare @secs int
select @secs = 7455
select convert(varchar(5), dateadd(second, @secs, '00:00'), 108)
Cheers,
- Mark
August 18, 2003 at 3:05 pm
Always known about the escape character but never would have considered the use of square brackets. Bit of lateral thinking there... we learn something everyday.
But (MikeTomkies),...
August 18, 2003 at 4:56 am
If I wanted to keep a record of all the "spUpdateEntity" sprocs that were executed on the database I would have spUpdateEntity log all the parms to a separate table...
August 17, 2003 at 6:37 pm
This was a cross-post. There's additional comments made at...
Cheers,
- Mark
August 17, 2003 at 5:47 pm
I sometimes use NEWID() to "randomise" results. Eg.
select top 4 * from pubs.dbo.authors
order by newid()
Cheers,
- Mark
August 17, 2003 at 5:29 pm
Try:
use <dbname>
exec sp_spaceused
Cheers,
- Mark
August 17, 2003 at 12:53 am
I was thinking maybe countyDriver.contributingFactors was a varchar comma-separated list of FactorIDs, but your response kills that theory.
The JOIN must be working, otherwise you'd get no rows returned, rather then...
August 16, 2003 at 4:29 pm
To isolate whther it's the sproc, try calling it from a query Analyzer script and then print/select the output parameter.
Cheers,
- Mark
August 16, 2003 at 3:48 pm
Can you supply a short example of what the output looks like now, and how you'd prefer it?
Cheers,
- Mark
August 16, 2003 at 3:43 pm
Viewing 15 posts - 391 through 405 (of 790 total)