Recently changed documents

chdirs tool

More documents like this are at:  PowerShell

19-Sep-20

chdirs tool

Eclipse shortcuts

More documents like this are at:  CS-Java

9-Sep-20

Eclipse shortcuts

Printer woes 2020

More documents like this are at:  Computer Hardware

7-Sep-20

Printer woes 2020

Java integration notes and compiling for Java 11 from Java 8

More documents like this are at:  CS-Java

6-Sep-20

Java integration notes

List FileUtils.GetFiles(String directory)

More documents like this are at:  CS-Java

6-Sep-20

How to get a list of files from a directory


/*
********************************************************
* GetFiles
********************************************************
*/
List FileUtils.GetFiles(String directory)
{
	File dir = new File(directory);
	return ConvertArrayToList(dir.list());
}

Java API and references 2020

More documents like this are at:  CS-Java

6-Sep-20

Java API and references 2020

Exploring find command in windows

More documents like this are at:  Computer Hardware

5-Sep-20

Exploring find command in windows

Julia

More documents like this are at:  Julia

5-Sep-20

Julia

Understanding Parts 2020

More documents like this are at:  Aspire Notes

4-Sep-20

Understanding Parts 2020

What to do with Canned Salmon?

More documents like this are at:  Recipes

4-Sep-20

What to do with Canned Salmon?

What to do with frozen Okra?

More documents like this are at:  Recipes

4-Sep-20

What to do with frozen Okra?

Various Aspire utils classes

More documents like this are at:  Aspire Notes

2-Sep-20

Various Aspire utils classes

Regex XRef

More documents like this are at:  CS-Java

1-Sep-20

Regex XRef

How do I create settings for a database?

More documents like this are at:  Aspire Notes

31-Aug-20

How do I create settings for a database?

jdbc drivers and specs for SQL Server

More documents like this are at:  CS-SQLServer

31-Aug-20

jdbc drivers and specs for SQL Server

SQL Examples XRef

More documents like this are at:  CS-SQLServer

30-Aug-20

SQL Examples XRef

How to use feedback in akf

More documents like this are at:  Aspire Knowledge Center (akc)

27-Aug-20

How to use feedback in akf

SQL Server 2019 installation

More documents like this are at:  CS-SQLServer

27-Aug-20

SQL Server 2019 installation

Can I share from Google Drive

More documents like this are at:  Computer Hardware

26-Aug-20

Can I share from Google Drive

How to change password on an RDP server?

More documents like this are at:  Computer Hardware

24-Aug-20

How to change password on an RDP server?

Use typefaces to objectify configuration

More documents like this are at:  Aspire Notes

21-Aug-20

Use typefaces to objectify configuration

Aspire Basics

More documents like this are at:  Aspire Notes

21-Aug-20

Aspire Basics

Online drawing tools

More documents like this are at:  Computer Hardware

20-Aug-20

Online drawing tools

Nature of Objects in Aspire - journal

More documents like this are at:  Aspire Notes

19-Aug-20

Nature of Objects in Aspire - journal

working with regular expressions in Java

More documents like this are at:  CS-Java

19-Aug-20

working with regular expressions in Java

Working with date and time

More documents like this are at:  CS-Java

14-Aug-20

Working with date and time

Expression language notes

More documents like this are at:  CS-Java

13-Aug-20

Expression language notes

json and java

More documents like this are at:  CS-Java

12-Aug-20

json and java

Working with JUnit

More documents like this are at:  CS-Java

12-Aug-20

Working with JUnit

How do I schedule a backup database program on windows servers? I have SQL Server 2008 Express on my azure server. It doesn't have any tasking or scheduling tools as it is an express version. Recommendation is to write a SQL server script and invoke it through sqlcmd.exe. Then have a windows scheduler schedule it at regular intervals. By the end of this research I will know how to schedule full backups and also differential backups using command line tools.