Skip to the content
Joes BlogJoes Blog
  • About
  • Dungeon Master Javascript
  • Home
  • →
  • Uncategorized

Amiga emulator (E-UAE) for Cobra ODE, works on superslim

Just a quick post giving a place to download E-UAE for the Cobra ODE. Please glance at the read me file and create a folder structure to that on the zip. TOSEC is a good resource to get hold of ADF’s and the kickstarts are available from all over the internet. You will need a … Amiga emulator (E-UAE) for Cobra ODE, works on superslim

Delete / Drop all stored procedures in an SQL Database

The following SQL will delete all stored procedures in a specified database. Make sure you specify the database you are using! USE [MyDatabase] DECLARE @spName varchar(500) DECLARE _CurCursor CURSOR FOR SELECT [name] FROM sys.objects WHERE type = ‘p’ OPEN _CurCursor FETCH NEXT FROM _CurCursor INTO @spName WHILE @@fetch_status = 0 BEGIN EXEC(‘DROP PROCEDURE ‘ + … Delete / Drop all stored procedures in an SQL Database

Posts navigation

newer →
© 2025 Joes Blog