Viewing 15 posts - 1 through 15 (of 117 total)
It depends how your role has been set-up. It may be that the role has been set up so that each individual stored proc needs to be explicitly permissioned for...
August 30, 2018 at 7:06 am
A couple of thoughts off the top of my head: Is the procedure created in the same schema that the db_execute role has access to? Is the procedure schema qualified and...
August 30, 2018 at 6:40 am
I'd be happy if an error message at least indicated the row number and column before throwing the rattle out of the pram.
June 28, 2018 at 4:03 am
I've updated the code that Lynn kindly provided to produce this. This will group multiple reciepts against an invoice to provide outstanding balances.
June 27, 2018 at 8:59 am
As Phil mentioned, you can use Datepart and Group By to achieve this.
DECLARE @t table (TimeValues time)
INSERT INTO @t VALUES
('00:20:00'),
('01:25:00'),
('01:30:00'),
('01:45:00'),
June 26, 2018 at 8:54 am
Firstly let me say that this is a great tool!
However I am getting the following error whenever the jobs try to send an email.
Executed as user: NT AUTHORITY\NETWORK SERVICE. Warning:...
July 25, 2013 at 8:51 am
Excellent work - many thanks for sharing.
April 29, 2013 at 8:45 am
The variable @MyCount is in a different scope to teh dynamic SQL that you have declared.
June 11, 2012 at 7:12 am
Evil Kraig F (11/22/2011)
November 23, 2011 at 2:12 am
Revenant (11/18/2011)
Man... that was not an easy one. Took me almost half an hour to figure it out. THANKS!
I'm glad that you got so much out of it....
November 19, 2011 at 12:27 pm
Hi all
Thanks for the feedback on the question. The results as they stand make for some interesting reading. Only 31% got the answer correct. So this shows that the loss...
November 18, 2011 at 7:47 am
priya.pk20 (10/17/2011)
plzz tel me, how can i access all these questions
If you can't work that out, then there's no way you should be on a SQL Server. I can imagine...
October 17, 2011 at 8:36 am
Ninja's_RGR'us (10/3/2011)
Far too often the code defaults to something like this :
begin tran
create table2 (new definition)
insert into table2 SELECT *...
October 3, 2011 at 8:37 am
This will severely bloat your your transaction log. Do you have enough space on the disk where your transaction log is located? If not, it could bring your server down.
October 3, 2011 at 7:36 am
Viewing 15 posts - 1 through 15 (of 117 total)