Viewing 15 posts - 1,816 through 1,830 (of 2,356 total)
I'm with Jeff.
There some sort of secret that makes this work, or keeps it from working.
I took your code, and try to run it in every way...
March 29, 2016 at 1:27 pm
Monitoring is kind of standard for most companies that provide this type of service. What would be good to focus on is the specifics of what they are monitoring,...
March 29, 2016 at 8:58 am
TomThomson (3/23/2016)
David.Poole (3/21/2016)
I'm extremely wary of LinkedIn endorsements. I've been endorsed by people I've never heard of for skills I didn't know I had.
Me too. I have endorsements...
March 23, 2016 at 10:58 am
rcooper 78099 (3/23/2016)
It has a parametier called "FundId" which is not linking to the
rest of the report it displays it...
March 23, 2016 at 10:41 am
rcooper 78099 (3/23/2016)
March 23, 2016 at 10:04 am
True story.
We were desperate to do some hiring. We received hundreds of resumes. 8 of us were sitting around the conference table passing the resumes in...
March 23, 2016 at 8:54 am
Also, this code will probably not do what you think it it should be doing.
Where
pc.accountnbr Not In ('Null', '') And
pc.checknbr Not In ('Null', '') And
...
March 23, 2016 at 8:47 am
rcooper 78099 (3/22/2016)
Incorrect syntax near the keyword 'join'.
Michael L John (3/22/2016)
Select
pc.accountnbr 'account number',
qf.description 'Fund Name',
pc.checknbr 'Check Number',
p.fullname 'Pay Provider',
...
March 22, 2016 at 3:09 pm
Select
pc.accountnbr 'account number',
qf.description 'Fund Name',
pc.checknbr 'Check Number',
p.fullname 'Pay Provider',
pc.amountpaid 'Amount Paid',
replace (pc.paydiscount,'-',''),
pc.advanceapplied 'Advance',
pc.checkamt 'Check AMT',
pc.checkprintdate As StartD,
pc.checkprintdate As EndD
from
paycheck...
March 22, 2016 at 2:59 pm
Declare @var varchar(3)
SET @var = '22'
SET @QRY ='exec dbo.sp_policeTest' + @var
Don't you need space after the sp_policeTest"
SET @QRY ='exec dbo.sp_policeTest' + @var
@Qry is "EXEC dbo.sp_policeTest22"
SET @QRY ='exec dbo.sp_policeTest ' +...
March 17, 2016 at 2:21 pm
Currently we have Skype for Business, Slack, Yammer, and email. Not to mention the ticket tracking system.
it certainly can, and does significantly at times, detract from productivity....
March 9, 2016 at 2:37 pm
Is this failing through SSMS or an application?
It sounds as if the credentials being used to run the the application have been denied access to this schema.
Try...
March 9, 2016 at 12:42 pm
It's probably not a good idea to create a permanent table in tempdb. This table will not be there the next time the server re-boots.
If you are creating...
March 9, 2016 at 12:23 pm
Do you want to move space on a volume, or do you want to move the database from one drive to another?
If you want to move space on a volume,...
March 9, 2016 at 12:12 pm
Viewing 15 posts - 1,816 through 1,830 (of 2,356 total)