Viewing 15 posts - 736 through 750 (of 4,820 total)
August 14, 2018 at 7:00 am
Just seems to me to be a simple group by:CREATE TABLE #temp (
prodID int,
mktID nvarchar(255),
rev decimal,
qty decimal,
UNIQUE CLUSTERED
(
mktID ASC,
prodID ASC
)
August 14, 2018 at 6:33 am
Unless your encryption process can be proven to be capable of being decrypted by the process at the other end, it seems unlikely this would work unless you had SQL...
August 13, 2018 at 2:58 pm
August 13, 2018 at 2:43 pm
August 13, 2018 at 2:32 pm
One additional note on JOINs... Once you grasp the basics, you can start using GROUP BY to restrict the rows that are returned, and that will then allow you to...
August 13, 2018 at 1:39 pm
SELECTAugust 13, 2018 at 1:27 pm
August 13, 2018 at 7:54 am
I'm not sure that's possible unless you have some kind of DDL trigger or monitoring in place. So if you weren't already getting such information, you may or may not...
August 13, 2018 at 7:42 am
How to degrade reports RDL from 2016 to 2012 servers? Is there...
August 13, 2018 at 7:40 am
August 10, 2018 at 7:50 am
Just an fyi ... If memory serves me correctly, sp_cursorprepexec is there to get ready to serve up the result set as a cursor that your application can "hold on...
August 10, 2018 at 7:45 am
Slowness in the disk subsystem ? Do you have any I/O waits going on ? Are you cramped for disk space ?
August 10, 2018 at 7:30 am
August 7, 2018 at 1:08 pm
Viewing 15 posts - 736 through 750 (of 4,820 total)