📦src
┣ 📂store
┃ ┣ 📂modules
┃ ┃ ┗ 📂generic_module
┃ ┃ ┃ ┣ 📜actions.ts
┃ ┃ ┃ ┣ 📜getters.ts
┃ ┃ ┃ ┣ 📜index.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE Procedure [dbo].[DeleteAllProcedures] | |
| AS | |
| DECLARE @schemaName varchar(500) | |
| DECLARE @procName varchar(500) | |
| DECLARE cur cursor | |
| FOR SELECT s.Name, p.Name FROM sys.procedures p | |
| INNER JOIN sys.schemas s ON p.schema_id = s.schema_id | |
| WHERE p.type = 'P' AND is_ms_shipped = 0 AND p.name NOT LIKE 'sp[_]%diagram%' | |
| ORDER BY s.Name, p.Name | |
| OPEN cur |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 0 * * * * * every minute | |
| 0 */5 * * * * every 5 minutes | |
| 0 0 * * * * every hour (hourly) | |
| 0 0 */6 * * * every 6 hours | |
| 0 0 8-18 * * * every hour between 8-18 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Implements multipart/form-data POST in C# http://www.ietf.org/rfc/rfc2388.txt | |
| // http://www.briangrinstead.com/blog/multipart-form-post-in-c | |
| public static class FormUpload | |
| { | |
| private static readonly Encoding encoding = Encoding.UTF8; | |
| public static HttpWebResponse MultipartFormDataPost(string postUrl, string userAgent, Dictionary<string, object> postParameters) | |
| { | |
| string formDataBoundary = String.Format("----------{0:N}", Guid.NewGuid()); | |
| string contentType = "multipart/form-data; boundary=" + formDataBoundary; |