Viewing 15 posts - 76 through 90 (of 116 total)
I'm just saying that the current-most SQL Agent log file's ...err ... create date(?) doesn't coincide with the most recent restart of the database instance. Up until now, across all...
March 9, 2016 at 8:33 am
Awesome. I look forward to seeing your iTVF code example. Learning ... gooood 🙂
--=cf
March 3, 2016 at 10:35 am
I'm not familiar with the iTVF's, so I'm following my original thread, and the guru's can correct me ...
Inside your function, you can just write T-SQL code, as the SQL...
March 3, 2016 at 10:14 am
I would just write a function which returns the string you're interested in:
SELECT serial_number,
fn_error_code(serial_number) as err
FROM t
WHERE fn_error_code(serial_number) is not...
March 2, 2016 at 4:54 pm
Andrew,
We don't always control INS/UPD/DEL through stored procs. So these users will have those DML rights against tables (and we don't have the staff to change everything over to sp's...
February 18, 2016 at 10:46 am
No offence taken, as I've been struggling with choosing the best approach for awhile now. If this problem can be solved AND we could use AD accounts, then I'm all...
February 18, 2016 at 10:45 am
Using this methodology, I'm still not clear on how you're supposed to limit a user's access to the underlying data, where they can just use an alternative, ODBC-compliant tool, (like...
February 18, 2016 at 9:43 am
This is really embarrassing....
Never mind, there was a Script Task off of the screen at the top of the control flow.
Ugh,
--=Chuck
February 1, 2016 at 2:35 pm
OK, good to know that I still can't modify the code behind a typical object from the toolbox. And in this case, I'm not trying to alter the code, just...
February 1, 2016 at 2:33 pm
Thanks Hugo. Luckily, there were no objects within those schemas. Just an ex-employee listed as their owner. Unfortunately he's not here to ask why he was setup in that manner.
--=Chuck
January 27, 2016 at 9:23 am
In this case, I was just creating a new account to access these procedures. When the Developer was testing the new account, these errors arose. The original creation of the...
January 26, 2016 at 8:43 am
So, what I initially thought was a permissions issue at the database level (some problem granting EXECUTE on all procedures), still turned out to be a permissions issue. Had I...
January 25, 2016 at 1:57 pm
Just as a follow up, I tried to create some sample code so that this could be reproducible, and using the following
create table junk (pk integer);
insert into junk values (1);
go
create...
January 22, 2016 at 4:36 pm
Would you mind clarifying your last sentence there? Currently, the data in both of these databases are unrelated. The data which was sequestered on an instance unavailable to the webserver,...
January 20, 2016 at 3:49 pm
"Audit Login Failed" worked, but there's not much more information than I received in the actual error message. I did at least find that whatever this is, is using the...
January 15, 2016 at 11:02 am
Viewing 15 posts - 76 through 90 (of 116 total)