Viewing 15 posts - 3,421 through 3,435 (of 13,871 total)
Contact the web site admins and ask them, maybe?
Why not script out the entire thing in VB? What does your macro do?
August 4, 2019 at 6:30 pm
Phil
i have 3 tables in the query and I’m doing an inner join on column from each table.
How will the partition help my query?
Kal
As I can't see your tables...
August 4, 2019 at 2:58 pm
As you have not provided any DDL, I had to make a guess.
drop table if exists #x;
create table #x
(
Ident varchar(20)
, Name...
August 4, 2019 at 2:25 pm
As you've not even provided your query, I'm not sure how you expect anyone to help you change it!
Also, this is a presentation issue. SSRS will easily do this for...
August 4, 2019 at 1:55 pm
You could use SSDT to run a schema compare. This can be an automated process, if required.
August 2, 2019 at 10:00 pm
i did put brackets around the YEAR field.... the tables over [YEAR]
I think you may have misunderstood me. Look at these columns, for example:
,Entry_summary_date
,Supplier
,Destination
,Part_num
,Manuf_id
,HTS_num
How can anyone look at this...
August 1, 2019 at 9:17 pm
i should get a few thousand rows back, but when i try pull in Duty Rates, i get hundreds of thousands. Thoughts?
Thought #1: Your join is not working as you...
August 1, 2019 at 6:50 pm
This post appears to be a duplicate of
https://www.sqlservercentral.com/forums/topic/mail-when-value-of-field-or-paramater
Which already contains suggestions (and some outstanding questions) as to how you might approach this.
August 1, 2019 at 1:35 pm
the upgrade has created some database schema in the back end
Please explain what you mean by this. A new database schema should not do anything bad, per se.
July 31, 2019 at 7:35 pm
That requirement looks suspect to me.
Do (a) and (b) both have to be true (AND), or is it a case of one or the other (OR)?
July 31, 2019 at 1:15 pm
One benefit I see is to do with vertical alignment.
SELECT col1
,LongCol2
,LongerCol3
...
July 30, 2019 at 1:55 pm
My testing agrees with yours ... line 1 appears to be the line just before CREATE PROC
July 24, 2019 at 10:11 pm
PolicyType is Pascal case, not camel case, which would be policyType.
I guess I'm lucky: I've been reading code without underscores for so long that I find it just as easy...
July 24, 2019 at 8:56 pm
You would use TINYINT with 1 or 0 so you can do a SUM aggregate. If you used Y/N, couldn't you get the same result by using some function to...
July 24, 2019 at 7:51 pm
Not tested, but the syntax will be more like this:
(SafetyBaseline == FALSE && RegulationBaseline == FALSE && EnvironmentSafetyBaseline == FALSE && EnvironmentSecurityBaseline == FALSE) ? IsActive = False: IsActive =...
July 24, 2019 at 1:53 pm
Viewing 15 posts - 3,421 through 3,435 (of 13,871 total)