Viewing 15 posts - 46 through 60 (of 240 total)
I've never seen this behavior. In fact, I can't imagine how it could even happen. Are you absolutely sure the backup was taken *after* the missing objects were defined?
September 16, 2005 at 7:12 am
> I'm very confused!!!
> I have implemented snapshot replication.
Well, that explains that! Sorry, couldn't resist. (Don't mind me -- I'm a replication-hating Luddite!)
I'd have...
September 16, 2005 at 6:55 am
I've had a similar problem. The initial install failed, and I was told that the most sure solution was to slick the machine and start over.
MSDE is free, and worth every...
September 15, 2005 at 2:19 pm
If the directory is on your network, do you need FTP? Unless I misunderstand, you could just use the NT-shell 'COPY' command and reference the target folder as a share.
Who...
September 15, 2005 at 12:16 pm
It should pretty much all be there. The 'sysjobsteps.command' column is defined as an NVARCHAR (3200), meaning it will hold 1600 characters. I've never tried creating a job step that...
September 15, 2005 at 11:55 am
Try going to 'msdb' and running:
SELECT j.name job_name
, s.step_id
, s.step_name
, s.command
FROM sysjobs j
JOIN sysjobsteps s ON j.job_id = s.job_id
ORDER BY j.name
September 15, 2005 at 11:42 am
Have you tried scripting them out, using Enterprise Manager?
September 15, 2005 at 11:35 am
You can join to a different server via "linked server", but performance will hover toward the bottom of the toilet. If it's feasible, especially if you're running repeated queries against...
September 15, 2005 at 7:25 am
I've seen studies on this, and if memory serves, I don't think it makes enough of a difference even to worry about. I usually just select what I need, but...
September 15, 2005 at 7:18 am
This depends on how many attributes they share. Most of us, I think, tend to think of a table as modeling a "thing" in the real world. We might, for...
September 15, 2005 at 7:12 am
Try this: Create another job step (CMD EXEC) after the output file has been created, which strips the first x number of lines out of the output file, making you...
September 15, 2005 at 7:03 am
You needn't be concerned with the fact that you stored it as 2.07 and EM is showing it to you as 2.070000. The database itself is storing that value in...
September 15, 2005 at 6:26 am
Either approach ought to work. The "best" one is the one that gives you the best trade-off between performance and easy-to-read code. IF or CASE logic is fine if it...
September 14, 2005 at 6:49 am
Assuming that the text file has row delimiters, you can BCP it into a table from a T-SQL procedure, invoking it through 'master..xp_cmdshell'. Something like:
IF OBJECT_ID ('tempdb..tempfile')...
September 13, 2005 at 3:14 pm
Turn it off when you want it off with: SET TRANSACTION ISOLATION LEVEL READ COMMITTED
Its effect stays on until you tell it otherwise.
If you want to lock only individual tables,...
September 13, 2005 at 7:39 am
Viewing 15 posts - 46 through 60 (of 240 total)