Skip to content

Instantly share code, notes, and snippets.

@BrunoCaimar
BrunoCaimar / GeoprocessorExemplo.cs
Created October 2, 2019 14:51
AO - Exemplos Adicionar novo campo, apagar campo, renomear e calcular campo
using ESRI.ArcGIS.DataManagementTools;
using ESRI.ArcGIS.esriSystem;
using ESRI.ArcGIS.Geodatabase;
using ESRI.ArcGIS.Geoprocessor;
using Neoenergia.ModuloProjetos.Util.Test;
using System;
using System.Runtime.InteropServices;
namespace GeoprocessorExemplo
{
@finsterthecat
finsterthecat / drop_all.sql
Created January 25, 2011 23:01
Oracle script: Drop everything for your user. Handy when you can't just delete your user.
declare
stringa varchar2(100);
cursor cur is
select *
from user_objects;
begin
for c in cur loop
begin