Viewing 15 posts - 181 through 195 (of 13,463 total)
once assigned, i think you have to Shift + Right click, and then choose open With...
the dialog has the option to set the default application near the bottom.
June 13, 2019 at 1:53 pm
you'll just need a loop that iterates per server
the question is where the list of servers comes from, here i have an example of populating form a query, but you...
June 13, 2019 at 1:38 pm
i think you should have gone straight to the source.
https://ola.hallengren.com/versions.html
09 Apr 2018
Added support for Linux and Amazon RDS in the job creation in MaintenanceSolution.sql.
June 11, 2019 at 2:52 pm
look specifically at your row number function. if you are getting duplicates, identify the column that causes duplicates, and add it to the partition by of hte row_number() statement:
June 11, 2019 at 2:11 pm
connectionstrings.com suggested a slightly different syntax, but both are valid:
https://www.connectionstrings.com/mysql/
Server=myServerAddress;Database=myDataBase;Uid=myUsername;Pwd=myPassword;
Connection Timeout=5;
June 10, 2019 at 9:21 pm
i think you can just modify the connection string in your shared data source.
by default, it looks something like this, just a servername and a databasename, but you can modify...
June 10, 2019 at 9:18 pm
it depends on what you are after. one of the most common requests is to change every other row for readability.
an example:
so in that example,the rownumber*() function needs teh...
June 10, 2019 at 9:04 pm
without access to SQL, no you cannot find out.
if you have access to view server state, the DMV's for index stats has the last time an index was used to...
June 7, 2019 at 8:39 pm
a pair of examples. if you are only looking for items that are 6 chars and start with P, vs stuffing a bunch of zeros into it no matter what...
June 6, 2019 at 9:13 pm
i prefer the alter authorization command:
ALTER AUTHORIZATION ON DATABASE::[WSS_Content] to [MyDomain\SharePointServiceAccount];
June 4, 2019 at 7:29 pm
i think you need to execute a script after the dacpac deployment.
a dacpac will create tables and objects, but there's no scripting involved, so no, no script can be appended...
June 3, 2019 at 8:57 pm
holy crap the new format of the website plays holy hell with code i took a lot of time to comment well and make sharp looking.
June 1, 2019 at 12:36 am
here is an older example i used to use, that assumes you have a list of server sin Central Management Servers
for each server, i may run a query per server,...
June 1, 2019 at 12:35 am
the six month/180 day evaluation is not that painful in a lab.
it is great practice to build machines over and over, join them to your lab's domain, and ideally, you...
May 9, 2019 at 2:04 pm
oops i missed the variable value request.
you need the data type and the value:
$node.VariableValue.DataType
$node.VariableValue.'#text'
May 9, 2019 at 12:49 pm
Viewing 15 posts - 181 through 195 (of 13,463 total)