Viewing 15 posts - 301 through 315 (of 13,460 total)
I got it to work as expected by using a SUM(case..) format, with a group by.
My ending date might need to be changed, as i seem to be...
Lowell
September 20, 2018 at 2:23 pm
this is a great example of testing it yourself, using EXECUTE AS can let you truly visualize and understand permissions for a user
say mydomain\lowell is the guy you...
Lowell
September 19, 2018 at 11:43 am
Alejandro I have pondered this over time,and there is a difference between informational reports and exception reports for me.
An informational report might have lots of info, names of databases,configuration...
Lowell
September 17, 2018 at 7:19 am
I've gone through the effort to get some certs,and i will not bore anyone with the alphabet soup.
My feelings are mixed.
I'm an experienced DBA. For me,The lower...
Lowell
August 31, 2018 at 9:16 am
your WHERE statements are using functions on a columnName, LIKE statements and OR's, which eliminates the ability to use indexes, so all tables have to be scanned.
you are also...
Lowell
August 28, 2018 at 10:17 am
your SQL server could be unresponsive due to high CPU or something, but some memory is always reserved for the Dedicated Admin Connection(assuming it was enabled), so if a server...
Lowell
August 25, 2018 at 6:52 am
are the packages using dtsconfig files, or do they all use embedded connection managers?
either way, you can use an SSIS package and some script tasks to scan for...
Lowell
August 16, 2018 at 8:55 am
Karen, Gmail and Thunderbird are both examples of clients suppressing images by default.
https://www.wired.com/2013/12/turn-gmail-auto-image-loading-off/ mentions where they changed the default behavior a while back.
I think they have settings...
Lowell
August 15, 2018 at 5:03 am
first, the root of the C: drive, or any drive that has %ProgramFiles% on it is protected, so only users with local admin privilesges can access it.
move your files...
Lowell
August 14, 2018 at 8:06 pm
create all your variables you need in your SSIS package.
Pass them to your script task.
then in your code, read them into a variable, assign a value...
Lowell
August 14, 2018 at 10:15 am
gmail has to use port 587 as well as the use_ssl flag.
here's the exact script i use. replace"sqlnotifications@gmail.com" with your gmail address instead.--#################################################################################################
-- BEGIN Mail...
Lowell
August 10, 2018 at 12:58 pm
you'll need to re-save it as a lower version.
with Visual Studio, create a new Reporting services project.
add an existing item with the specific rdl in question.
right...
Lowell
August 10, 2018 at 12:29 pm
here you go, here is one way:
i just used a case statement to examine the fifth character, to determine where to start the substring:/*
ActualValue ExpectLeftValue ...
Lowell
August 10, 2018 at 11:57 am
Beating my own drum here, but i put together a procedure that queries the metadata to script tables and objects:
I try to maintain it as best I can, it's...
Lowell
August 6, 2018 at 10:01 am
your example was not syntactically correct, i fixed it for you.
the key you want here is to group by and SUM.
some things just don't belong in the results,...
Lowell
July 24, 2018 at 2:12 pm
Viewing 15 posts - 301 through 315 (of 13,460 total)