Skip to content

Instantly share code, notes, and snippets.

View tytusspullo's full-sized avatar

Grzegorz Piszczek tytusspullo

  • TKomp, RedGate
  • Bydgoszcz
View GitHub Profile
@tytusspullo
tytusspullo / gist:e78465d0dedc7eeca1a938ef07b925ea
Last active January 16, 2025 19:14
Good way to clean your obj folder if do not have access to VS plugins, specially on older Visual Studio versions.
FOR /d /r . %%d IN ("obj") DO @IF EXIST "%%d" rd /s /q "%%d"
@tytusspullo
tytusspullo / gist:469ef1429bf87569a8876afce8560044
Last active January 16, 2025 19:45
CREATES SCHEMA on ORACLE DATABASE and SET up some GRANTS
DECLARE
cnt NUMBER;
BEGIN
SELECT COUNT(*)
INTO cnt
FROM all_users
WHERE username = 'GP_BLANK';
IF (cnt>0) THEN
EXECUTE IMMEDIATE 'DROP USER GP_BLANK CASCADE';
end if;