Viewing 15 posts - 1,561 through 1,575 (of 7,191 total)
Are you doing Run As Administrator to open Config Manager? Is there anything in the Windows System and Application event logs that gives more details on why it failed?
May 5, 2017 at 4:52 am
Please don't bump your post after only 20 minutes. You've been around here long enough to know that that's going to annoy people.
Yes, you haven't declared @remotesql1, and...
May 5, 2017 at 3:25 am
May 5, 2017 at 2:01 am
Right then, as I said, use TRY_CONVERT to identify the offending values.
John
May 4, 2017 at 7:33 am
Like I said before, values in a date column are stored as a number, not with any particular format. The format you see when you select from the table in...
May 4, 2017 at 7:18 am
Then you must have some "dates" that can't be converted - something like "13/13/11", maybe? Try using TRY_CONVERT to find out which are the offending values.
John
May 4, 2017 at 7:07 am
The value of a persisted column is calculated at select time, not at insert or update time - consider the code below and you'll see that. That's why the persisted...
May 4, 2017 at 2:34 am
Try running a trace to capture queries that run for more than, say, five seconds. That'll give you an idea of what's going on when the server is supposed to...
May 3, 2017 at 2:07 am
Are the log backup jobs actually clearing out the transaction logs when they run? If not, use this query to find out why:SELECT log_reuse_wait_desc
FROM sys.databases
WHERE...
May 2, 2017 at 9:56 am
May 2, 2017 at 9:34 am
May 2, 2017 at 7:22 am
When you run the package manually, it runs in the context of whatever user you're logged in as. When you run it from a job, it runs in the context...
May 2, 2017 at 4:29 am
What is the data type of the Dates column in your new table? If it's datetime (or similar), then dates are stored as dates, not strings. That's how it should...
May 2, 2017 at 4:02 am
Viewing 15 posts - 1,561 through 1,575 (of 7,191 total)