środa, 16 sierpnia 2017

czwartek, 12 lutego 2015

Gmail how to make more space!

So finlly I saw

13,39 GB (89 %) av 15 GB används

Lets clean it!

I found some maila I sure want to delete but it was like deleting 100++ mails and get 0,5 MB space -> wrong way!

So I find that there is way to serach by date and size of email  that means, for example, to find emails larger than 5MB, you can search for size:5m or larger:5m or to find emails sent over a year ago, older_than:1y.

Simply way to find solution! :)

czwartek, 8 maja 2014

Assigning a sequence value to a variable in procedure for one or more tables

I discovered today that in Oracle 10g (and I presume in earlier versions also) it is not possible to directly assign a sequence value in to a PLSQL variable, hence neither of the 2 following examples will compile in 10g:

1: Try
PROCEDURE set_up_test_data(no_of_days NUMBER)
IS
  -- Doesn't compile
  nice_unique_number NUMBER := mysequence.nextval;
BEGIN
  -- do stuff here...
END set_up_test_data;
2: Try
PROCEDURE set_up_test_data(no_of_days NUMBER)
IS
  nice_unique_number NUMBER;
BEGIN
  -- Doesn't compile.
  
nice_unique_number := mysequence.nextval;
  -- do stuff here...
END set_up_test_data;

A bit of googling suggests that a common workaround to this is to be do a SELECT INTO using the dual table, as below: 

PROCEDURE set_up_test_data(no_of_days NUMBER)
IS
  nice_unique_number NUMBER;
BEGIN
  --Works nicely
  
SELECT mysequence.nextval INTO nice_unique_number FROM dual;
  -- do stuff here...
  e.g. INSERT INTO TABLE_1 (COLUMN1, COLUMN2, COLUMN3) VALUES (nice_unique_number, value.table_1.column1, value_2.table_1.column2);
END set_up_test_data;
 

Note: This no appears to be an issue as of Oracle 11g (search for Straight Sequences).

source: http://www.eddgrant.com/blog/EdD/entry/assigning_a_sequence_value_to

wtorek, 14 stycznia 2014

How to migrate Wordpress from server 1 to 2 and change URL

First create WP on server 1
root/cat1/wp/

Configurate there whole website.

Then I need to switch to another location

server 2 where there was a domain.com

So what to do?

Go to server 1

  • make perma links as default
  • First make copy of all files from server 1 
  • Secend make a copy of DB via phpadmin and check drop table option 


Go to server 2

  • create folder where you want install wp 
  • make redarection from domain.com to this folder
  • copy intallation files of wp 
  • go to install wp
  • remove wp-content folder (server 2)
  • copy wp-content from the server 1
  • remove whole DB (server 2)
  • import DB from server 1 - 1:1 do not change anything
  • log in to admin panel - you will need to use server path if you will be redirected to old admin panel (server 1) go to DB (server 2) and paste path from server 2 to siteurl and home - now you should be able to log into 
eg http://server_name/catalog1/wp_installation_folder
  • change website url to domain.com
  • install http://wordpress.org/extend/plugins/velvet-blues-update-urls/ and swap paths. From server 1 to server 2
  • change siteurl and home url to domain.com 
  • change permalink settings

wtorek, 12 marca 2013

Visio 2007/2010 connection points

Hi,
Today I found out how to add "connection points" in Visio.
Often people drag and drop stuff from wizzard and its nothing wrong but they got defined the connection points. What when we want put connection point in our opinion best position?

Visio 2007:
MS helpYoutube help

Visio 2010:
MS help

I work on Visio 2010. And here where is it :) the "x" is connection point. Select it and press CTRL now point where you want add x point :)
You will be able to connect to it any connectors.

Hope it would help someone in the future.