Get Job name when you are executing job. This is useful when you need to make reference to the job being executed. 1 2DECLARE @jobname sysname, @jobid uniqueidentifier 3 4SELECT @jobname=b.name,@jobid=b.job_id 5FROM sys.dm_exec_sessions a,msdb.dbo.sysjobs b 6WHERE a.session_id=@@spid 7AND...

How create a file with 1 GB of data using the command line in Windows Server 2019, you can use the fsutil command. Here’s an example: 1fsutil file createnew filename.txt 1073741824 In this command, filename.txt is the name of the file you want to create and 1073741824 is the size of the file in bytes (1 GB). Note that...

you are already in trouble and it is too late when … The transaction log becomes full, SQL Server Database Engine issues a 9002 error. The SQL Server Database Filegroup is Full. Run out of disk space You must have the answer to theses questions: Who many times the database base can still growth? Do we use the best...

You can enable or disable DoH in your Firefox connection settings: Click the menu button and select Options. In the General panel, scroll down to Network Settings and click the Settings… button. In the dialog box that opens, scroll down to Enable DNS over HTTPS. On: Select the Enable DNS over HTTPS checkbox. Select a...

Tired of getting that “Video paused. Continue watching?” confirmation dialog? This extension autoclicks it, so you can listen to your favorite music uninterrupted. Working on YouTube and YouTube Music! https://addons.mozilla.org/en-US/firefox/addon/youtube-nonstop/?src=search

Why do I need to change it? Joining VM to the domain when we clone VMs… A SID, short for security identifier, is a number used to identify user, group, and computer accounts in Windows. SIDs are created when the account is first created in Windows and no two SIDs on a computer are ever the same. The term security ID is...

A collection of awesome browser-side JavaScript libraries, resources and shiny things. Package Managers# Host the javascript libraries and provide tools for fetching and packaging them. npm - npm is the package manager for javascript. Bower - A package manager for the web. component - Client package management for...

Blocks annoying video ads on YouTube, Facebook ads, banners and much more. Adblock Plus blocks all annoying ads, and supports websites by not blocking unobtrusive ads by default (configurable). Adblock Plus allows you to regain control of the internet and view the web the way you want to. The add-on is supported by...

The Web Developer extension adds various web developer tools to the browser. https://addons.mozilla.org/en-US/firefox/addon/web-developer/

# Ads just annoy me and I’ve never bought anything from an ad. On YouTube, you have to listen then, no way, I will not waste minutes of my life waiting for ads. AdBlocker for YouTube™ removes all annoying Ads from YouTube. Important features: Allows you to remove annoying contents from your YouTube videos. You can also...

Tutorial to add more trial time. Step 1 : Registry - Add fake date Open Regedit Find registry key Computer\HKEY_CURRENT_USER\Software\DEVSENSE\PHP Tools for Visual Studio\VS 15.0 VS 15.0 it is my version of Visual Studio Change registry Delete : DisableStartupTrialWindow Change date to future date : TrialStart ex:...

The big thing is … Mongo BD is NOT RDBMS! In OOP are not tables and rows, objects use polymorphism, inheritance, and it is not uniform. Use objects with RDBMS can be hard. Mongo DB has no schema to define, no tables and no relationships between collections of objects. Each document can be flat, simple, or complex as we...

Quickly and easily switch between popular user-agent strings. https://mybrowseraddon.com/useragent-switcher.html https://addons.mozilla.org/en-US/firefox/addon/user-agent-switcher-revived/?src=search

Protects you against tracking through “free”, centralized, content delivery. It prevents a lot of requests from reaching networks like Google Hosted Libraries, and serves local files to keep sites from breaking. Complements regular content blockers....

Prevents Google and Yandex search pages from modifying search result links when you click them.Google and Yandex search pages have the annoying habit of changing the result link when you click it. So if you right-click the link in order to copy it you get some gibberish instead of what you wanted. This extension...

he NoScript Firefox extension provides extra protection for Firefox, Seamonkey and other mozilla-based browsers: this free, open source add-on allows JavaScript, Java, Flash and other plugins to be executed only by trusted web sites of your choice (e.g. your online bank). https://noscript.net/...

This Stored procedure send a file by FTP. Check if SQL Agent has access to the file and FTP server. The little trick is to create a file that will run. It can have conflicts easily because filename is always the same. Next version will be with random name. Use this code carefully, it is not 100% safe. 1 2USE master; 3...

Easy steps to install PHP on Windows Server 2016 This tutorial was create for Windows Server 2016 x64, but you can do it on Windows Workstation x86, but you just need to use x86 everywhere. # REQUIREMENTS# Windows Server 2016 IIS PHP bin files WinCache VC++ IIS service with CGI extension.# Before to install, verify if...