Viewing 15 posts - 2,071 through 2,085 (of 2,569 total)
see if this applies https://support.microsoft.com/en-ie/help/3041857/code-0x80070057-the-parameter-is-incorrect-error-when-you-try-to-displ
November 16, 2018 at 12:16 pm
use the try catch block.
after the try catch do another bulk insert this time of the error file - if any record is loaded you had errors on the...
November 16, 2018 at 12:07 pm
load the file onto a table with a single column (varchar(max) - or whatever size is enough to hold a single record)
and then do parsing and validation in t-sql...
November 16, 2018 at 11:15 am
first I wonder if the syntax is correct
EXECUTE AS LOGIN='[domain]\';
possibly should be
EXECUTE AS LOGIN='[domain\user]'; -- brackets around all of the domain\user, not around both domain and user
November 15, 2018 at 5:51 pm
you need to go and read the manuals in more detail - and google as there are plenty of good examples.
This is a beginners question.
... a...
November 15, 2018 at 3:04 pm
and you should really forget that those 2 options exist - pure evil.
If you have locking issues look into the possibility of enabling READ_COMMITTED_SNAPSHOT your database.
Depending on your...
November 14, 2018 at 6:19 pm
I fail to see where the SQL Job belongs on your VBA process.
From VBA you can call the proc directly passing whatever parameters you wish.
from what you...
November 13, 2018 at 12:13 pm
unless you are using a evaluation version then you won't have it.
otherwise the SQL Server license does not expire.
If you have SA this does expire if...
November 12, 2018 at 2:39 am
easier does not mean better or correct.
And as the output is being loaded by a COBOL program what is the exact layout it needs?
fixed length file?
November 11, 2018 at 6:22 pm
and most important where is the code you surely have already tried to do to address your requirements.
As well as the rules and the desired output.
And that...
November 11, 2018 at 3:29 pm
you still didn't understand the main issue.
Most people will not download a file that can contain anything at all.
DDL and SQL unless extremely big (10K lines...
November 11, 2018 at 12:58 pm
In my current (and some of the previous) company we definitely have audit controls.
Not in all systems (yet) but at least on the core ones.
so every time someone...
November 11, 2018 at 12:09 pm
similar results for me
As the results I had given before only related to the date part I've also run your code with just the date bit.
and also...
November 10, 2018 at 2:06 pm
November 10, 2018 at 12:51 pm
Viewing 15 posts - 2,071 through 2,085 (of 2,569 total)