jmar.fr rapport :   Visitez le site


  • Titre:jmar.fr

    La description :aller au contenu aller au menu aller à la recherche samedi 23 mai 2015 postgresql: trouver des doublons dans une table dans postgresql, il existe les window functions qui permettent de faire des calcu...

    Server:cloudflare...
    X-Powered-By:PHP/7.1.8

    L'adresse IP principale: 104.24.112.155,Votre serveur Singapore,Singapore ISP:CloudFlare Inc.  TLD:fr Code postal:sg

    Ce rapport est mis à jour en 07-Oct-2018

Created Date:2011-11-20
Changed Date:2016-10-21
Expires Date:2017-11-20

Données techniques du jmar.fr


Geo IP vous fournit comme la latitude, la longitude et l'ISP (Internet Service Provider) etc. informations. Notre service GeoIP a trouvé l'hôte jmar.fr.Actuellement, hébergé dans Singapore et son fournisseur de services est CloudFlare Inc. .

Latitude: 1.2896699905396
Longitude: 103.85006713867
Pays: Singapore (sg)
Ville: Singapore
Région: Singapore
ISP: CloudFlare Inc.

the related websites

domaine Titre

Analyse d'en-tête HTTP


Les informations d'en-tête HTTP font partie du protocole HTTP que le navigateur d'un utilisateur envoie à appelé cloudflare contenant les détails de ce que le navigateur veut et acceptera de nouveau du serveur Web.

Expect-CT:max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
X-Content-Type-Options:nosniff
X-Powered-By:PHP/7.1.8
Transfer-Encoding:chunked
Set-Cookie:__cfduid=d981abfb73d2df3c7819fbe0ee6f9399d1538926269; expires=Mon, 07-Oct-19 15:31:09 GMT; path=/; domain=.jmar.fr; HttpOnly; Secure
Strict-Transport-Security:max-age=15552000; includeSubDomains; preload
Server:cloudflare
Last-Modified:Sat, 15 Sep 2018 13:34:35 GMT
Connection:keep-alive
Pragma:
Cache-Control:must-revalidate, max-age=0
Date:Sun, 07 Oct 2018 15:31:09 GMT
X-Frame-Options:SAMEORIGIN
Content-Type:text/html; charset=UTF-8
CF-RAY:466169bfb8460ee5-EWR
Content-Encoding:gzip

DNS

soa:donna.ns.cloudflare.com. dns.cloudflare.com. 2028964178 10000 2400 604800 3600
ns:donna.ns.cloudflare.com.
gerald.ns.cloudflare.com.
ipv4:IP:104.24.112.155
ASN:13335
OWNER:CLOUDFLARENET - Cloudflare, Inc., US
Country:US
IP:104.24.113.155
ASN:13335
OWNER:CLOUDFLARENET - Cloudflare, Inc., US
Country:US
ipv6:2606:4700:30::6818:709b//13335//CLOUDFLARENET - Cloudflare, Inc., US//US
2606:4700:30::6818:719b//13335//CLOUDFLARENET - Cloudflare, Inc., US//US
txt:"v=spf1 include:_spf.google.com ~all"
"google-site-verification=MaIJ6g9LuEQluhtwarEzU4NGb6Jn3bzACV8-G-MotW4"
mx:MX preference = 5, mail exchanger = alt2.aspmx.l.google.com.
MX preference = 10, mail exchanger = aspmx2.googlemail.com.
MX preference = 10, mail exchanger = aspmx3.googlemail.com.
MX preference = 5, mail exchanger = alt1.aspmx.l.google.com.
MX preference = 1, mail exchanger = aspmx.l.google.com.

HtmlToText

aller au contenu aller au menu aller à la recherche samedi 23 mai 2015 postgresql: trouver des doublons dans une table dans postgresql, il existe les window functions qui permettent de faire des calculs sur un ensemble d'éléments liés aux éléments courants. dans le cas présent, nous allons demander à postgresql de regrouper les éléments en fonction de la valeur de deux champs. jeu de test : create table double (id serial primary key, name text, value int ); insert into double (name, value) values ('nom1', 1); insert into double (name, value) values ('nom1', 2); insert into double (name, value) values ('nom1', 3); insert into double (name, value) values ('nom2', 1); insert into double (name, value) values ('nom2', 2); insert into double (name, value) values ('nom2', 3); insert into double (name, value) values ('nom3', 1); insert into double (name, value) values ('nom1', 1); insert into double (name, value) values ('nom1', 1); nous allons maintenant rechercher les doublons sur le couple nom, valeur. select * from ( select id, name, row_number() over (partition by name, value order by id asc ) as dup from double ) as w where dup > 1; voici le résultat [local]/test =# select * from (select id, name, row_number() over (partition by name, value order by id asc) as dup from double) as pwet where dup > 1; id │ name │ dup ───┼──────┼───── 8 │ nom1 │ 2 9 │ nom1 │ 3 (2 lignes) on peut ensuite imaginer une requête qui supprime les doublons : delete from double where id in ( select id from ( select id, name, row_number() over (partition by name, value order by id asc) as dup from double ) as w where dup > 1 ); delete 2 temps : 65,681 ms par jérémy marmol, samedi 23 mai 2015. bdd › postgresql bdd postgresql aucun commentaire aucun rétrolien dimanche 26 avril 2015 mise en place de firewalld introductionfirewalld est une surcouche à iptables installée par défaut sur redhat 7 et centos 7. contrairement aux anciens modèles de parefeux (system-config-firewall/lokkit), chaque changement nécessitait un redémarrage complet du parefeu.firewalld récupère les informations sur les règle parefeu […] lire la suite par jérémy marmol, dimanche 26 avril 2015. système aucun commentaire aucun rétrolien mardi 12 août 2014 pypi mirroring installation d'un mirroir pypi local$rootdir = répertoire de stockage du projet.création d'un virtualenv pour héberger le projetvirtualenv pypimirror installation de pypimirrorsource pypimirror/bin/activate pip install pypimirror depuis la version 1.0.15, il est demandé d'installer beautifulsoup en […] lire la suite par jérémy marmol, mardi 12 août 2014. python aucun commentaire aucun rétrolien mercredi 14 mai 2014 installation de postgresql via yum note : toute cette procédure est applicable pour centos61. configurer le dépôt officiel rpm -ivh http://yum.postgresql.org/9.3/redhat/rhel-6-x86_64/pgdg-centos93-9.3-1.noarch.rpm 2. installer les paquets nécessaires yum install postgresql93 postgresql93-server postgresql93-contrib […] lire la suite par jérémy marmol, mercredi 14 mai 2014. bdd › postgresql aucun commentaire aucun rétrolien dimanche 24 novembre 2013 utilisation de fabric sous windows prérequisune version fonctionnelle de python. l'installation de fabric nécessite pycrypto qui est assez compliqué à compiler.j'ai donc préféré chercher des binaires précompilés sur le net pycrypto-2.3.1.win7x64-py2.7x64.7z.décompresser l'archive à la racine du virtualenv utilisé pour […] lire la suite par jérémy marmol, dimanche 24 novembre 2013. système aucun commentaire aucun rétrolien python sous windows installationpour commencer télécharger l'installeur python2.7 sur le site officiel [http://python.org/ftp/python/2.7.4/python-2.7.4.msi](http://python.org/ftp/python/2.7.4/python-2.7.4.msi)mise en place de setuptool et pipafin de faciliter l'installation des paquets python, il faut installer […] lire la suite par jérémy marmol, dimanche 24 novembre 2013. python python windows aucun commentaire aucun rétrolien lundi 18 novembre 2013 authentification postgresql pour proftpd préparation de la base postgresql création de l'utilisateur create user ftp login encrypted password 'sup3rs3cret'; création de la base create database ftpuser owner ftp; création des tables create table users ( pkid serial primary key, userid text not null unique, passwd text, uid int, gid […] lire la suite par jérémy marmol, lundi 18 novembre 2013. bdd › postgresql aucun commentaire aucun rétrolien vendredi 2 août 2013 mysql procédures stockées j'ai eu besoin, dans le cadre d'un projet, de supprimer des lignes sur certaines tables contenant un id spécifique. cette manipulation devant se faire régulièrement, une procédure stockée a été créée. delimiter $$ drop procedure if exists deleteorphan$$ create procedure deleteorphan(in hwid int) […] lire la suite par jérémy marmol, vendredi 2 août 2013. bdd › mysql aucun commentaire aucun rétrolien lundi 16 juillet 2012 postgressql - suppression de tables en fonction du owner suite à une fausse manipulation, j'ai importé l'ensemble de mes bases de données dans la base template1. conséquence, toutes les nouvelles bases de données créées le seraient avec le schéma de toutes les autres bases. c'est moche ! le nombre de table étant importantes, j'ai donc créé une procédure […] lire la suite par jérémy marmol, lundi 16 juillet 2012. bdd › postgresql bdd postgresql aucun commentaire aucun rétrolien samedi 2 juin 2012 serveur bind en master / slave installer bind via l'outil de gestion de paquet du système (apt / yum / emerge) apt-get/yum install named emerge -av bind configuration du master génération de la clé de transfert entre ns1 et ns2 /usr/sbin/dnssec-keygen -a hmac-md5 -b 512 -r /dev/urandom -n host ns2 fichier […] lire la suite par jérémy marmol, samedi 2 juin 2012. système dns linux aucun commentaire aucun rétrolien dimanche 15 avril 2012 migration d'une base zabbix de mysql vers postgresql création de la base sous postgresqlcreate role zabbix password 'pass' login; create database zabbix owner zabbix import du schéma zabbix>psql -u zabbix zabbix < /usr/share/zabbix/database/create/postgresql.sql export des datas mysql dans un format compatible avec postgresqlmysqldump --compact […] lire la suite par jérémy marmol, dimanche 15 avril 2012. bdd › postgresql aucun commentaire aucun rétrolien lundi 27 février 2012 installation de nginx sur une gentoo installation de nginxnginx est un concurent d'apache qui est beaucoup plus performant que ce dernier. http://www.first-world.info/apache-vs-lighttpd-vs-nginx.html voici comment installer nginx sous gentoo ...compilation de nginx#installation de vim-syntax avec nginx :-) echo […] lire la suite par jérémy marmol, lundi 27 février 2012. système gentoo linux nginx aucun commentaire aucun rétrolien installation de postgresql à partir des sources récupération des sourceswget http://ftp.postgresql.org/pub/source/v9.1.2/postgresql-9.1.2.tar.gz tar xvzf postgresql-9.1.2.tar.gz compilation des sourcescd postgresql-9.1.2 ./configure --prefix=/opt/postgresql-9.1.2 make -j2 && make install initialisation de la base.useradd -d […] lire la suite par jérémy marmol, lundi 27 février 2012. bdd › postgresql aucun commentaire aucun rétrolien dimanche 26 février 2012 installation d'une gentoo sur dedibox sc me voila heureux possesseur d'une dédibox sc. mais la liste des os disponibles dans la console d'installation ne me conviens pas du tout. j'ai donc décidé d'installer mon os préféré, une gentoo.etape 1 : booter en mode rescuecette étape permets d'avoir accès au système car de base le serveur est […] lire la suite par jérémy marmol, dimanche 26 février 2012. système gentoo linux aucun commentaire aucun rétrolien menu recherche catégories bdd postgresql mysql système python mots-clés bdd dns gentoo linux nginx postgresql python windows tous les mots-clés extra menu haut de page informations s'abonner fil des billets fil des commentaires propulsé par dotclear

Analyse PopURL pour jmar.fr


https://www.jmar.fr/tag/dns
https://www.jmar.fr/post/2013/11/18/authentification-postgresql-pour-proftpd#comments
https://www.jmar.fr/post/2013/11/18/authentification-postgresql-pour-proftpd#pings
https://www.jmar.fr/post/2012/02/26/installation-d-une-gentoo-sur-dedibox-sc#pings
https://www.jmar.fr/post/2013/11/24/utilisation-de-fabric-sous-windows
https://www.jmar.fr/post/2015/05/23/postgresql%3a-trouver-des-doublons-dans-une-table#pings
https://www.jmar.fr/post/2013/11/24/python-sous-windows
https://www.jmar.fr/category/bdd
https://www.jmar.fr/post/2013/11/24/python-sous-windows#comments
https://www.jmar.fr/tag/linux
https://www.jmar.fr/post/2012/02/26/installation-d-une-gentoo-sur-dedibox-sc
https://www.jmar.fr/category/python
https://www.jmar.fr/post/2012/07/16/postgressql-suppression-de-tables-en-fonction-du-owner#comments
https://www.jmar.fr/feed/atom/comments
https://www.jmar.fr/post/2013/11/24/python-sous-windows#pings

Informations Whois


Whois est un protocole qui permet d'accéder aux informations d'enregistrement.Vous pouvez atteindre quand le site Web a été enregistré, quand il va expirer, quelles sont les coordonnées du site avec les informations suivantes. En un mot, il comprend ces informations;

%%
%% This is the AFNIC Whois server.
%%
%% complete date format : DD/MM/YYYY
%% short date format : DD/MM
%% version : FRNIC-2.5
%%
%% Rights restricted by copyright.
%% See https://www.afnic.fr/en/products-and-services/services/whois/whois-special-notice/
%%
%% Use '-h' option to obtain more information about this service.
%%
%% [2600:3c03:0000:0000:f03c:91ff:feae:779d REQUEST] >> jmar.fr
%%
%% RL Net [##########] - RL IP [#########.]
%%

domain: jmar.fr
status: ACTIVE
hold: NO
holder-c: ANO00-FRNIC
admin-c: O95-FRNIC
tech-c: O95-FRNIC
zone-c: NFC1-FRNIC
nsl-id: NSL3159-FRNIC
registrar: ONLINE SAS
Expiry Date: 20/11/2017
created: 20/11/2011
last-update: 21/10/2016
source: FRNIC

ns-list: NSL3159-FRNIC
nserver: ns0.online.net
nserver: ns1.online.net
source: FRNIC

registrar: ONLINE SAS
type: Isp Option 1
address: 8 Rue de la Ville l'Evêque
address: PARIS
country: FR
phone: +33 1 84 13 00 01
fax-no: +33 1 73 50 29 01
e-mail: hostmaster@online.net
website: http://www.online.net
anonymous: NO
registered: 01/04/1999
source: FRNIC

nic-hdl: ANO00-FRNIC
type: PERSON
contact: Ano Nymous
remarks: -------------- WARNING --------------
remarks: While the registrar knows him/her,
remarks: this person chose to restrict access
remarks: to his/her personal data. So PLEASE,
remarks: don't send emails to Ano Nymous. This
remarks: address is bogus and there is no hope
remarks: of a reply.
remarks: -------------- WARNING --------------
registrar: ONLINE SAS
changed: 17/07/2013 anonymous@anonymous
anonymous: YES
obsoleted: NO
eligstatus: ok
source: FRNIC

nic-hdl: O95-FRNIC
type: ORGANIZATION
contact: ONLINE
address: 8, rue de la ville l'eveque
address: 75008 Paris
country: FR
phone: +33 1 84 13 00 00
fax-no: +33 1 73 50 29 01
e-mail: hostmaster@online.net
registrar: ONLINE SAS
changed: 22/09/2016 nic@nic.fr
anonymous: NO
obsoleted: NO
source: FRNIC


  REFERRER http://www.nic.fr

  REGISTRAR AFNIC

SERVERS

  SERVER fr.whois-servers.net

  ARGS jmar.fr

  PORT 43

  TYPE domain
RegrInfo
DISCLAIMER
%
% This is the AFNIC Whois server.
%
% complete date format : DD/MM/YYYY
% short date format : DD/MM
% version : FRNIC-2.5
%
% Rights restricted by copyright.
% See https://www.afnic.fr/en/products-and-services/services/whois/whois-special-notice/
%
% Use '-h' option to obtain more information about this service.
%
% [2600:3c03:0000:0000:f03c:91ff:feae:779d REQUEST] >> jmar.fr
%
% RL Net [##########] - RL IP [#########.]
%

  REGISTERED yes

ADMIN

  HANDLE O95-FRNIC

  TYPE ORGANIZATION

  CONTACT ONLINE

ADDRESS
8, rue de la ville l'eveque
75008 Paris

  COUNTRY FR

  PHONE +33 1 84 13 00 00

  FAX +33 1 73 50 29 01

  EMAIL hostmaster@online.net

  SPONSOR ONLINE SAS

  CHANGED 2016-09-22

  ANONYMOUS NO

  OBSOLETED NO

  SOURCE FRNIC

TECH

  HANDLE O95-FRNIC

  TYPE ORGANIZATION

  CONTACT ONLINE

ADDRESS
8, rue de la ville l'eveque
75008 Paris

  COUNTRY FR

  PHONE +33 1 84 13 00 00

  FAX +33 1 73 50 29 01

  EMAIL hostmaster@online.net

  SPONSOR ONLINE SAS

  CHANGED 2016-09-22

  ANONYMOUS NO

  OBSOLETED NO

  SOURCE FRNIC

OWNER

  HANDLE ANO00-FRNIC

  TYPE PERSON

  CONTACT Ano Nymous

REMARKS
-------------- WARNING --------------
While the registrar knows him/her,
this person chose to restrict access
to his/her personal data. So PLEASE,
don't send emails to Ano Nymous. This
address is bogus and there is no hope
of a reply.
-------------- WARNING --------------

  SPONSOR ONLINE SAS

  CHANGED 2013-07-17

  ANONYMOUS YES

  OBSOLETED NO

  ELIGSTATUS ok

  SOURCE FRNIC

DOMAIN

  STATUS ACTIVE

  HOLD NO

  SPONSOR ONLINE SAS

  EXPIRY DATE 20/11/2017

  CREATED 2011-11-20

  CHANGED 2016-10-21

  SOURCE FRNIC

  HANDLE NSL3159-FRNIC

NSERVER

  NS0.ONLINE.NET 195.154.228.249

  NS1.ONLINE.NET 62.210.16.9

  NAME jmar.fr

Go to top

Erreurs


La liste suivante vous montre les fautes d'orthographe possibles des internautes pour le site Web recherché.

  • www.ujmar.com
  • www.7jmar.com
  • www.hjmar.com
  • www.kjmar.com
  • www.jjmar.com
  • www.ijmar.com
  • www.8jmar.com
  • www.yjmar.com
  • www.jmarebc.com
  • www.jmarebc.com
  • www.jmar3bc.com
  • www.jmarwbc.com
  • www.jmarsbc.com
  • www.jmar#bc.com
  • www.jmardbc.com
  • www.jmarfbc.com
  • www.jmar&bc.com
  • www.jmarrbc.com
  • www.urlw4ebc.com
  • www.jmar4bc.com
  • www.jmarc.com
  • www.jmarbc.com
  • www.jmarvc.com
  • www.jmarvbc.com
  • www.jmarvc.com
  • www.jmar c.com
  • www.jmar bc.com
  • www.jmar c.com
  • www.jmargc.com
  • www.jmargbc.com
  • www.jmargc.com
  • www.jmarjc.com
  • www.jmarjbc.com
  • www.jmarjc.com
  • www.jmarnc.com
  • www.jmarnbc.com
  • www.jmarnc.com
  • www.jmarhc.com
  • www.jmarhbc.com
  • www.jmarhc.com
  • www.jmar.com
  • www.jmarc.com
  • www.jmarx.com
  • www.jmarxc.com
  • www.jmarx.com
  • www.jmarf.com
  • www.jmarfc.com
  • www.jmarf.com
  • www.jmarv.com
  • www.jmarvc.com
  • www.jmarv.com
  • www.jmard.com
  • www.jmardc.com
  • www.jmard.com
  • www.jmarcb.com
  • www.jmarcom
  • www.jmar..com
  • www.jmar/com
  • www.jmar/.com
  • www.jmar./com
  • www.jmarncom
  • www.jmarn.com
  • www.jmar.ncom
  • www.jmar;com
  • www.jmar;.com
  • www.jmar.;com
  • www.jmarlcom
  • www.jmarl.com
  • www.jmar.lcom
  • www.jmar com
  • www.jmar .com
  • www.jmar. com
  • www.jmar,com
  • www.jmar,.com
  • www.jmar.,com
  • www.jmarmcom
  • www.jmarm.com
  • www.jmar.mcom
  • www.jmar.ccom
  • www.jmar.om
  • www.jmar.ccom
  • www.jmar.xom
  • www.jmar.xcom
  • www.jmar.cxom
  • www.jmar.fom
  • www.jmar.fcom
  • www.jmar.cfom
  • www.jmar.vom
  • www.jmar.vcom
  • www.jmar.cvom
  • www.jmar.dom
  • www.jmar.dcom
  • www.jmar.cdom
  • www.jmarc.om
  • www.jmar.cm
  • www.jmar.coom
  • www.jmar.cpm
  • www.jmar.cpom
  • www.jmar.copm
  • www.jmar.cim
  • www.jmar.ciom
  • www.jmar.coim
  • www.jmar.ckm
  • www.jmar.ckom
  • www.jmar.cokm
  • www.jmar.clm
  • www.jmar.clom
  • www.jmar.colm
  • www.jmar.c0m
  • www.jmar.c0om
  • www.jmar.co0m
  • www.jmar.c:m
  • www.jmar.c:om
  • www.jmar.co:m
  • www.jmar.c9m
  • www.jmar.c9om
  • www.jmar.co9m
  • www.jmar.ocm
  • www.jmar.co
  • jmar.frm
  • www.jmar.con
  • www.jmar.conm
  • jmar.frn
  • www.jmar.col
  • www.jmar.colm
  • jmar.frl
  • www.jmar.co
  • www.jmar.co m
  • jmar.fr
  • www.jmar.cok
  • www.jmar.cokm
  • jmar.frk
  • www.jmar.co,
  • www.jmar.co,m
  • jmar.fr,
  • www.jmar.coj
  • www.jmar.cojm
  • jmar.frj
  • www.jmar.cmo
 Afficher toutes les erreurs  Cacher toutes les erreurs