YeiZeta

assembla.com Hack By The Joker Inject XML

Jun 30th, 2012
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.64 KB | None | 0 0
  1. ----------------------------------------------------------------------------------------------
  2. `¶¶¶¶¶@ ¶¶ ¶¶ ¶@ ¶
  3. ¶¶ ¶¶¶¶¶. ¶¶¶¶¶% ¶¶ .¶¶¶¶¶ ¶@ ¶¶ ¶¶¶¶¶ ¶¶¶¶¶
  4. ¶¶ ¶¶ ‹¶. ¶¶¶¶¶% ¶¶ .¶= ¶¶ ¶¶¶¶ ¶¶¶¶¶¶@ ¶¶
  5. ¶¶ ¶¶ ‹¶. ¶¶ ¶¶ .¶= ¶¶ ¶@ ¶¶ ¶¶ ¶¶
  6. ¶¶ ¶¶ ‹¶. ¶¶¶¶% .¶¶¶ ¶¶¶¶ ¶@ ¶¶ ¶¶¶¶¶ ¶¶
  7.  
  8.  
  9.  
  10. ¶¶ ¶¶ ¶¶ ¶@
  11. ¶¶ ¶¶ ¶¶¶¶¶6 ¶¶¶¶¶¶ ¶¶ .¶% YeiZeta
  12. ¶¶¶¶¶ ¶¶ ¶6 ¶¶ ¶¶¶¶¶
  13. ¶¶ ¶¶ ¶¶ ¶¶6 ¶¶ ¶¶ .¶%
  14. ¶¶ ¶¶ ¶¶¶¶6¶@ ¶¶¶¶¶ ¶¶ .¶%
  15. ----------------------------------------------------------------------------------------------
  16. drop table if exists ASSOCIATION_1;
  17.  
  18. drop table if exists CALENDARIO;
  19.  
  20. drop table if exists CONSTANTES;
  21.  
  22. drop table if exists CONSUMO_MES;
  23.  
  24. drop table if exists DEPARTAMENTO;
  25.  
  26. drop table if exists GASTO_EDIFICIO;
  27.  
  28. drop table if exists OTRO_GASTO;
  29.  
  30. drop table if exists PAGO;
  31.  
  32. drop table if exists TOTAL_GASTOS_EDIFICIO;
  33.  
  34. drop table if exists USUARIO;
  35.  
  36. /*==============================================================*/
  37. /* Table: ASSOCIATION_1 */
  38. /*==============================================================*/
  39. create table ASSOCIATION_1
  40. (
  41. FECHA date not null,
  42. NUMERO int not null,
  43. IDENTIFICADOR_DE_PAGO int not null,
  44. primary key (FECHA, NUMERO, IDENTIFICADOR_DE_PAGO)
  45. );
  46.  
  47. /*==============================================================*/
  48. /* Table: CALENDARIO */
  49. /*==============================================================*/
  50. create table CALENDARIO
  51. (
  52. FECHA date not null,
  53. primary key (FECHA)
  54. );
  55.  
  56. /*==============================================================*/
  57. /* Table: CONSTANTES */
  58. /*==============================================================*/
  59. create table CONSTANTES
  60. (
  61. FECHA date not null,
  62. VALOR_UNIDAD_AGUA_CALIENTE int,
  63. VALOR_UNIDAD_DE_CALEFACCION int,
  64. VALOR_FICHAS int,
  65. primary key (FECHA)
  66. );
  67.  
  68. /*==============================================================*/
  69. /* Table: CONSUMO_MES */
  70. /*==============================================================*/
  71. create table CONSUMO_MES
  72. (
  73. FECHA date not null,
  74. NUMERO int not null,
  75. CONSUMO_AGUA_CALIENTE int,
  76. CONSUMO_CALEFACCION int,
  77. CONSUMO_LAVANDERIA int,
  78. CUOTA_GASTO_EDIFICIO int,
  79. GASTO_CONSUMO_AGUA_CALIENTE int,
  80. GASTO_CONSUMO_CALEFACCION int,
  81. GASTO_FICHAS int,
  82. MOROSIDAD_ANTERIOR int,
  83. TOTAL_PAGAR int,
  84. TOTAL_PAGADO int,
  85. primary key (FECHA, NUMERO)
  86. );
  87.  
  88. /*==============================================================*/
  89. /* Table: DEPARTAMENTO */
  90. /*==============================================================*/
  91. create table DEPARTAMENTO
  92. (
  93. NUMERO int not null,
  94. USUARIO_NOMBRE char(20) not null,
  95. NOMBRE_PROPIETARIO varchar(50),
  96. RUT_PROPIETARIO varchar(10),
  97. METROS_CUADRADOS int,
  98. ALICUOTA real,
  99. TORRE char(10),
  100. PISO int,
  101. primary key (NUMERO)
  102. );
  103.  
  104. /*==============================================================*/
  105. /* Table: GASTO_EDIFICIO */
  106. /*==============================================================*/
  107. create table GASTO_EDIFICIO
  108. (
  109. IDENTIFICADOR_GASTO_EDIFICIO char(10) not null,
  110. FECHA date not null,
  111. CONCEPTO varchar(30),
  112. PORVEEDOR varchar(30),
  113. CATEGORIA varchar(30),
  114. MONTO int,
  115. TIPO_DE_RECIBO varchar(30),
  116. primary key (IDENTIFICADOR_GASTO_EDIFICIO)
  117. );
  118.  
  119. /*==============================================================*/
  120. /* Table: OTRO_GASTO */
  121. /*==============================================================*/
  122. create table OTRO_GASTO
  123. (
  124. IDENTIFICADOR_GASTO_DEPTO char(20) not null,
  125. FECHA date not null,
  126. NUMERO int not null,
  127. CONCEPTO varchar(30),
  128. MONTO int,
  129. primary key (IDENTIFICADOR_GASTO_DEPTO)
  130. );
  131.  
  132. /*==============================================================*/
  133. /* Table: PAGO */
  134. /*==============================================================*/
  135. create table PAGO
  136. (
  137. IDENTIFICADOR_DE_PAGO int not null,
  138. FECHA_EFECTUADO date,
  139. MONTO_PAGADO int,
  140. NUMERO_DE_CHEQUE int,
  141. BANCO varchar(30),
  142. TELEFONO int,
  143. CELULAR int,
  144. E_MAIL varchar(40),
  145. primary key (IDENTIFICADOR_DE_PAGO)
  146. );
  147.  
  148. /*==============================================================*/
  149. /* Table: TOTAL_GASTOS_EDIFICIO */
  150. /*==============================================================*/
  151. create table TOTAL_GASTOS_EDIFICIO
  152. (
  153. FECHA date not null,
  154. TOTAL_GASTOS_A_PRORRATEAR int,
  155. TOTAL_GASTOS_EDIFICIO int,
  156. primary key (FECHA)
  157. );
  158.  
  159. /*==============================================================*/
  160. /* Table: USUARIO */
  161. /*==============================================================*/
  162. create table USUARIO
  163. (
  164. USUARIO_NOMBRE char(20) not null,
  165. PASSWORD char(20),
  166. TIPO char(13),
  167. primary key (USUARIO_NOMBRE)
  168. );
  169. --------------------------------------------------------------------------------------------------------
  170. insert into condominio.departamento (NUMERO,NOMBRE_PROPIETARIO,RUT_PROPIETARIO,METROS_CUADRADOS,ALICUOTA,TORRE,PISO,NOMBRE_USUARIO,PASSWORD) values (11,"Juan Herrera","11111111-1",50,5.0,"Norte",1,"Juan","Juan");
  171. insert into condominio.departamento (NUMERO,NOMBRE_PROPIETARIO,RUT_PROPIETARIO,METROS_CUADRADOS,ALICUOTA,TORRE,PISO,NOMBRE_USUARIO,PASSWORD) values (12,"Juan Herrera1","11111111-1",50,5.0,"Norte",1,"Manuel","Manuel");
  172. insert into condominio.departamento (NUMERO,NOMBRE_PROPIETARIO,RUT_PROPIETARIO,METROS_CUADRADOS,ALICUOTA,TORRE,PISO,NOMBRE_USUARIO,PASSWORD) values (13,"Juan Herrera2","11111111-1",50,5.0,"Sur",1,"Victor","Victor");
  173. insert into condominio.departamento (NUMERO,NOMBRE_PROPIETARIO,RUT_PROPIETARIO,METROS_CUADRADOS,ALICUOTA,TORRE,PISO,NOMBRE_USUARIO,PASSWORD) values (14,"Juan Herrera3","11111111-1",50,5.0,"Sur",1,"Esteban","Esteban");
  174. insert into condominio.departamento (NUMERO,NOMBRE_PROPIETARIO,RUT_PROPIETARIO,METROS_CUADRADOS,ALICUOTA,TORRE,PISO,NOMBRE_USUARIO,PASSWORD) values (21,"Juan Herrera4","11111111-1",50,5.0,"Norte",2,"Julio","Julio");
  175. insert into condominio.departamento (NUMERO,NOMBRE_PROPIETARIO,RUT_PROPIETARIO,METROS_CUADRADOS,ALICUOTA,TORRE,PISO,NOMBRE_USUARIO,PASSWORD) values (22,"Juan Herrera5","11111111-1",50,5.0,"Norte",2,"Marcelo","Marcelo");
  176. insert into condominio.departamento (NUMERO,NOMBRE_PROPIETARIO,RUT_PROPIETARIO,METROS_CUADRADOS,ALICUOTA,TORRE,PISO,NOMBRE_USUARIO,PASSWORD) values (23,"Juan Herrera6","11111111-1",50,5.0,"Sur",2,"Felipe","Felipe");
  177. insert into condominio.departamento (NUMERO,NOMBRE_PROPIETARIO,RUT_PROPIETARIO,METROS_CUADRADOS,ALICUOTA,TORRE,PISO,NOMBRE_USUARIO,PASSWORD) values (24,"Juan Herrera7","11111111-1",50,5.0,"Sur",2,"Maria","Maria");
  178. insert into condominio.departamento (NUMERO,NOMBRE_PROPIETARIO,RUT_PROPIETARIO,METROS_CUADRADOS,ALICUOTA,TORRE,PISO,NOMBRE_USUARIO,PASSWORD) values (31,"Juan Herrera8","11111111-1",50,5.0,"Norte",3,"Luisa","Luisa");
  179. insert into condominio.departamento (NUMERO,NOMBRE_PROPIETARIO,RUT_PROPIETARIO,METROS_CUADRADOS,ALICUOTA,TORRE,PISO,NOMBRE_USUARIO,PASSWORD) values (32,"Juan Herrera9","11111111-1",50,5.0,"Norte",3,"Luis","Luis");
  180. insert into condominio.departamento (NUMERO,NOMBRE_PROPIETARIO,RUT_PROPIETARIO,METROS_CUADRADOS,ALICUOTA,TORRE,PISO,NOMBRE_USUARIO,PASSWORD) values (33,"Juan Herrera10","11111111-1",50,5.0,"Sur",3,"Rene","Rene");
  181. insert into condominio.departamento (NUMERO,NOMBRE_PROPIETARIO,RUT_PROPIETARIO,METROS_CUADRADOS,ALICUOTA,TORRE,PISO,NOMBRE_USUARIO,PASSWORD) values (34,"Juan Herrera11","11111111-1",50,5.0,"Sur",3,"Jose","Jose");
  182. insert into condominio.departamento (NUMERO,NOMBRE_PROPIETARIO,RUT_PROPIETARIO,METROS_CUADRADOS,ALICUOTA,TORRE,PISO,NOMBRE_USUARIO,PASSWORD) values (41,"Juan Herrera12","11111111-1",50,5.0,"Norte",4,"Ernesto","Ernesto");
  183. insert into condominio.departamento (NUMERO,NOMBRE_PROPIETARIO,RUT_PROPIETARIO,METROS_CUADRADOS,ALICUOTA,TORRE,PISO,NOMBRE_USUARIO,PASSWORD) values (42,"Juan Herrera13","11111111-1",50,5.0,"Norte",4,"Claudia","Claudia");
  184. insert into condominio.departamento (NUMERO,NOMBRE_PROPIETARIO,RUT_PROPIETARIO,METROS_CUADRADOS,ALICUOTA,TORRE,PISO,NOMBRE_USUARIO,PASSWORD) values (43,"Juan Herrera14","11111111-1",50,5.0,"Sur",4,"Pablo","Pablo");
  185. insert into condominio.departamento (NUMERO,NOMBRE_PROPIETARIO,RUT_PROPIETARIO,METROS_CUADRADOS,ALICUOTA,TORRE,PISO,NOMBRE_USUARIO,PASSWORD) values (44,"Juan Herrera15","11111111-1",50,5.0,"Sur",4,"Carlos","Carlos");
  186. insert into condominio.departamento (NUMERO,NOMBRE_PROPIETARIO,RUT_PROPIETARIO,METROS_CUADRADOS,ALICUOTA,TORRE,PISO,NOMBRE_USUARIO,PASSWORD) values (51,"Juan Herrera16","11111111-1",50,5.0,"Norte",5,"Christian","Christian");
  187. insert into condominio.departamento (NUMERO,NOMBRE_PROPIETARIO,RUT_PROPIETARIO,METROS_CUADRADOS,ALICUOTA,TORRE,PISO,NOMBRE_USUARIO,PASSWORD) values (52,"Juan Herrera17","11111111-1",50,5.0,"Norte",5,"Alejandra","Alejandra");
  188. insert into condominio.departamento (NUMERO,NOMBRE_PROPIETARIO,RUT_PROPIETARIO,METROS_CUADRADOS,ALICUOTA,TORRE,PISO,NOMBRE_USUARIO,PASSWORD) values (53,"Juan Herrera18","11111111-1",50,5.0,"Sur",5,"Guillermo","Guillermo");
  189. insert into condominio.departamento (NUMERO,NOMBRE_PROPIETARIO,RUT_PROPIETARIO,METROS_CUADRADOS,ALICUOTA,TORRE,PISO,NOMBRE_USUARIO,PASSWORD) values (54,"Juan Herrera19","11111111-1",50,5.0,"Sur",5,"Javier","Javier");
  190. insert into condominio.calendario (ANNO,MES) values ("2008","Enero");
  191. insert into condominio.calendario (ANNO,MES) values ("2008","Febrero");
  192. insert into condominio.calendario (ANNO,MES) values ("2008","Marzo");
  193. insert into condominio.calendario (ANNO,MES) values ("2008","Abril");
  194. insert into condominio.calendario (ANNO,MES) values ("2008","Mayo");
  195. insert into condominio.calendario (ANNO,MES) values ("2008","Junio");
  196. insert into condominio.calendario (ANNO,MES) values ("2008","Julio");
  197. insert into condominio.calendario (ANNO,MES) values ("2008","Agosto");
  198. insert into condominio.calendario (ANNO,MES) values ("2008","Septiembre");
  199. insert into condominio.calendario (ANNO,MES) values ("2008","Octubre");
  200. insert into condominio.calendario (ANNO,MES) values ("2008","Noviembre");
  201. insert into condominio.calendario (ANNO,MES) values ("2008","Diciembre");
  202. insert into condominio.calendario (ANNO,MES) values ("2009","Enero");
  203. insert into condominio.calendario (ANNO,MES) values ("2009","Febrero");
  204. insert into condominio.calendario (ANNO,MES) values ("2009","Marzo");
  205. insert into condominio.calendario (ANNO,MES) values ("2009","Abril");
  206. insert into condominio.calendario (ANNO,MES) values ("2009","Mayo");
  207. insert into condominio.calendario (ANNO,MES) values ("2009","Junio");
  208. insert into condominio.calendario (ANNO,MES) values ("2009","Julio");
  209. insert into condominio.calendario (ANNO,MES) values ("2009","Agosto");
  210. insert into condominio.calendario (ANNO,MES) values ("2009","Septiembre");
  211. insert into condominio.calendario (ANNO,MES) values ("2009","Octubre");
  212. insert into condominio.calendario (ANNO,MES) values ("2009","Noviembre");
  213. insert into condominio.calendario (ANNO,MES) values ("2009","Diciembre");
  214.  
  215. --------------------------------------------------------------------------------------------------------
Add Comment
Please, Sign In to add comment