Viewing 15 posts - 301 through 315 (of 13,463 total)
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...
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...
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...
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...
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...
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...
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...
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 ...
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...
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,...
July 24, 2018 at 2:12 pm
SearchAllTables from stack overflow explicitly ignores date/datetime datatypes.
peek at the code:
AND DATA_TYPE IN ('char', 'varchar', 'nchar', 'nvarchar', 'int', 'decimal')
modify your version to use datetime data...
July 15, 2018 at 6:26 pm
in SSMS, if you drag the columns folder from the SQL object explorer to an ssms window, all columns will appear as a comma delimited list.
it's easier then to...
June 11, 2018 at 6:30 am
SQL doesn't have a rowtype equivalent.
ROWTYPE , in sql terms for me, is used in a cursor as a collection of all the @parameters that would correspond to each...
June 11, 2018 at 6:20 am
We have an Audit in place that captures Login created or Login Changed.
I have seen on patch nights, those same logins get dropped and recreated as part of the patches;
i...
May 3, 2018 at 3:20 pm
it's gotta be permissions.
here's my suggestion:
On the SQL Server, Create a credential that has your actual username and password, because we know it works when you execute it.
May 3, 2018 at 3:03 pm
Viewing 15 posts - 301 through 315 (of 13,463 total)