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
| <?xml version='1.0' encoding='utf-8' ?> | |
| <root_contact> | |
| <contact display_name="john" office_number="123456" mobile_number="123456" other_number="123456" line="0" ring="" group_id_name="0" default_photo="Default:default_contact_image.png" selected_photo="0" is_favorate="0"/> | |
| </root_contact> |
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
| { | |
| "id":"284", | |
| "title":"Bolshoi Ballet - Het Zwanenmeer", | |
| "subtitle":"", | |
| "onlinelabel":"Ballet", | |
| "type":"screenevent", | |
| "iconset":null, | |
| "ageclass":"no-class", | |
| "threed":"false", | |
| "releasedate":"2015-07-21", |
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
| USE [mydb] | |
| GO | |
| /****** Object: DatabaseRole [db_executestoredprocedures] Script Date: 05/23/2013 12:10:19 ******/ | |
| CREATE ROLE [db_executestoredprocedures] AUTHORIZATION [dbo] | |
| GO | |
| -- 1b - Grant permissions | |
| GRANT EXECUTE TO db_executestoredprocedures | |
| GO |
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
| /*http://databases.aspfaq.com/database/how-do-i-find-a-stored-procedure-containing-text.html*/ | |
| SELECT ROUTINE_NAME, ROUTINE_DEFINITION | |
| FROM INFORMATION_SCHEMA.ROUTINES | |
| WHERE ROUTINE_DEFINITION LIKE '%foobar%' | |
| AND ROUTINE_TYPE='PROCEDURE' |
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
| select | |
| pt.name AS 'Part type', | |
| count(*) AS 'Qty processed', | |
| 'Passed' = ( | |
| select count(*) | |
| from tbl_rmaproducts_generic rp2, tbl_parts p2, tbl_part_type pt2, tbl_rma rma2 | |
| where swapgroup_id = 8 | |
| and p2.id = rp2.part_id | |
| and pt2.id = p2.parttype_id | |
| and rma2.id = rp2.rma_id |