Quantcast
Channel: dBforums – Everything on Databases, Design, Developers and Administrators
Viewing all 13329 articles
Browse latest View live

Use of a variable with Data Studio within a SQL Query on a DB2 z/OS database

$
0
0
Hello friends,

does anyone know how I can use a variable within my sql when I am connected with the Data Studio to my DB2 Database which is located on z/OS.

Thank you for your help in advance.

best regards,

DB_N00B

PS: This is my script


D_SSY_TPR_TS1380_P.sql

CREATE VARIABLE BLUB VARCHAR(10)
SET BLUB = 'Y'
SELECT *
FROM TABLE
where MANUAL_CREATION = BLUB


Failed queries => 3

Is there a simpler way to manage this Private Tuition classes' system?

$
0
0
Hey guys, I'm making a website for a private tuition classes. Here, the concept is that a teacher goes to teach to the student's house. There are many teachers operating this way teaching many students at their home and all this is scheduled by the classes. They want a system to manage this whole thing.

The real life scenario is like:-the classes decides the weekdays on which lectures will be conducted throughout the semester e.g. in this semester all the lecture that student S will have which are taught by teacher T will be conducted on say Monday and Wednesday of every week. Only the weekdays are decided and no other details are predetermined. Student, Teacher and Subject have their own IDs (stu_id, tch_id, sub_id) and they together are identified by the primary key assignment_id. For each pair of student, teacher and subject there is an assignment_id and these details about each assignment i.e. which teacher teaches which subject to which student, are stored in another table “assignments”.

Also we have to give a notification to student and teacher about the lectures which are to be conducted and let them decide if the lecture will be conducted on the decided day of the week or some other day after that day. And then insert the data into “lecture_schedule” table about the conducted lecture i.e. assignment_id, duration, chapters covered, etc. In case the lecture gets rescheduled, the reason is stored in a separate table with the reason of rescheduling and required details about the adjustment. There is one more possibility that the day of the week on which the lecture is to be conducted may change i.e. if lecture is conducted on Monday, I want it to be conducted on Friday for the whole remaining semester.

I want to create a database schema using which I can handle all these tasks in an efficient way. I want the details of the lecture which are conducted to be stored in a way that I can manage it well (number of lectures for a particular assignment are not fixed). And I want a mechanism using which I can change the weekday as well for a particular assignment.

Solution I thought of is like this:-

I have a table “assignment_days” whose schema is like assignment_days(assignment_id, mon, tue, wed, thu, fri, sat , sun). If I want the lectures to be conducted on Monday and Friday, then I make all other values null and put a value in the table for mon and fri such that on Monday and Friday, the integer value in that field will change to 7 and if the value is (value%7 == 0) then I send the notification to respective student and teacher. If I want the lecture day to be Tuesday instead of Monday then I take the number of remaining days for the next lecture and then subtract it from 7 e.g. if today is Wednesday and I’m replacing Monday with Tuesday then next lecture of Tuesday is after 6 days. So I put 7-6=1 into the Tuesday field for that assignment_id so that on the next Tuesday the number in that field will be 7 and notification will be shown.

For storing the lecture details, I’ve made a table “lecture_schedule” in which I’m storing assignment_id, lecture number, duration of lecture, and many other details of the each lecture conducted. But there are many lectures conducted by many teachers in a single semester so I’m worried that the whole table will be very bulky and the table will be difficult to manage. If you can think of a criteria based on which I can divide the lecture details into several tables then please tell me. Also if you have a better solution for managing this system then please let me know.

Tasks I want to do:-

1. Store the lecture details in an efficient way.
2. Manage and store scheduling and sending notifications.
3. Store the data about rescheduling and make changes in database accordingly.

Can anyone give a solution for this please?

Thanks in advance!

Hello Everybody!

$
0
0
Hello Everybody here at dbforums.com. I am harris and I have just become a member of this forum. Looking ahead to get lots of useful information and meet great people here :)

DBA Project, NY- Julie @ Oxford‏

$
0
0
Start- 6/6

LOA- 12 months

Location- Albany NY

Schedule- Onsite M-F highly preferred ok with M-TH if traveling in



Job description

Develop Oracle Competency center for Global DBA team creating best practices for configuring and optimizing databases along with developing solutions for high volume performance issues.



Principal Accountabilities:

• Design and implement processes and procedures to reduce and eliminate database outages and downtime. Optimize databases for maximal performance, scalability, flexibility, and reliability

• Lead production debug and troubleshooting efforts along with database modeling sessions, creating logical, and physical models

• Work closely with application teams to create and maintain schema objects, design and debug triggers, stored procedures and user defined functions.

• Complete performance monitoring and tuning to maintain maximum performance, review and implement backup and restore strategies

• Monitor database logs for hardware, memory or disk space/ capacity issues and take appropriate action. Implement database parameter and configuration changes for optimal performance with the host operating system.

• Responsible for capacity planning, roadmap development, architecture and integration design

• Responsible to build the Oracle competency within the team across multiple sites

• Ensure the database environment remains in compliance with our vendor license agreements

• Document, Plan and Test Disaster Recovery procedures.

• Design, implement and maintain database security strategies that provide the appropriate level of security for users and applications.



Experience:

• Min 10 years of Oracle Database Administration Experience

• Knowledge of Oracle Data Guard, Golden Gate, Downstream databases, Parallel concurrent processing and OEM tools

• Proficiency in troubleshooting, fine-tuning, and scalability techniques

• Extensive experience in availability and capacity monitoring, implementing replication, backup and recovery

• Self motivator and quick learner, ability to adapt and hit the ground running is very important

• The more Golden Gate the better



Big Plus

Local




__________________________________

Julie Crepeau

Technical Recruiter, Enterprise Applications
Oxford International

4200 Northcorp Parkway Suite 300

Palm Beach Gardens, FL 33410



888.842.3225 Office

Large database backup

$
0
0
We have a somewhat large database server (about 8TB across 5 databases) with very high activity (2000-3000 log switches per hour). We are looking to reduce our recovery time and the large number of archive logs that would need to be applied takes too much time. What is the best solution for quickly recovering large Oracle databases with high activity (CDP solutions? Disk array snapshots? Oracle Flashback? Oracle Data Gard?) Are there other types of solutions?

Simple subquery summary

$
0
0
I created a query and want to do if it is possible a subquery with summary, below is my code. Is it possible. I have never done a subquery before.

SELECT [GL Description], SUM(Amount) AS [Prior YTD Amount], Year, Month
FROM dbo.vlv_PriorYrDetailExpenses
GROUP BY [GL Description], Year, Month
HAVING (Year = @Year) AND (Month <= @Month)


I get this result using the above query

GL_Description Amount Year Month

Auto Expense 100.00 2015 1
Auto Expense 100.00 2015 2
Off. Expense 200.00 2015 1
Off.Expense 200.00 2015 2
Contract Labor 1000.00 2015 1
Contract Labor 1000.00 2015 2
Cleaning Labor 2000.00 2015 1
Cleaning Labor 2000.00 2015 2




I would like to get this result instead without the month.

GL_Description Amount Year

Auto Expense 200.00 2015
Off. Expense 400.00 2015
Contract Labor 2000.00 2015
Cleaning Labor 4000.00 2015


Any help will be appreciated. Thank you in advance.

*** $90 OFF SALE *** Alnitech █ Quad Core Xeon E3-1230 / 16GB / 2х1Т @ $59 █

$
0
0
Why choose Alnitech:

All of our hardware comes with 24x7 support and well-qualified professional sysadmins available to answer your questions. All server orders are backed by 21-day money-back guarantee.


We have many years of experience, with proven record of customer satisfaction:
http://www.serchen.com/company/alnitech/
Order now and join our happy customer's club!

====================================

This Week Offer:

SUPERMICRO Xeon E3-1230 v2/v3, 16GB, 2x1T, 5 IPs

CPU: Quad Core Xeon E3-1230v3 3.3-3.7 GHz, 8MB (4 physical Cores, 8 HT cores)
RAM: 16GB ECC DDR3
HDD: 2x1000GB SATA 7.2K Software RAID1, HOT-SWAP!
Location: Asheville, NC / Lombard, IL
Ideal for: Webhosting, E-Commerce, Automated Trading, S/w development.
Included:
PROACTIVE BMC LOG MONITORING
100Mbps UNMETERED Port
Gold-level power supply
5 IPs for free
DEDICATED IPMI CONNECTED TO SEPARATE NETWORK (KVM over IP, remote media)

REGULAR PRICE: $149.99/monthly
SALE* PRICE (90_OFF coupon): $59.99/monthly WOW!!
order now

(*) New signups only. If you are an existing Alnitech's client please contact sales for more details.

====================================

Other Configurations:


1. SUPERMICRO Xeon E3-1230 v2/v3, 8GB, 1x1T, 5 IPs

CPU: Quad Core Xeon E3-1230v3 3.3-3.7 GHz, 8MB (4 physical Cores, 8 HT cores)
RAM: 8GB ECC DDR3
HDD: 1x1000GB SATA 7.2K (4 drive bays)
Location: Asheville, NC
Ideal for: E-Commerce, Digital marketing & Advertising, Automated Trading, S/w development.
Included:
PROACTIVE BMC LOG MONITORING
100Mbps UNMETERED Port
Gold-level power supply
5 IPs for free
DEDICATED IPMI CONNECTED TO SEPARATE NETWORK (KVM over IP, remote media)

PRICE: $129.99/monthly
order now

====================================

2. SUPERMICRO Xeon E5-2620 v1/v2, 32GB, 2x1T, 5 IPs

CPU: Hexa Core Xeon E5-2620 2.0-2.5GHz, 15MB (6 physical Cores, 12 HT cores)
RAM: 32GB ECC DDR3
HDD: 2x1000GB SATAIII WD Black 7.2K Software RAID1, HOT-SWAP!
Location: Asheville, NC
Ideal for: Webhosting, E-Commerce, Storage/Backup, Virtualization.
Included:
PROACTIVE BMC LOG MONITORING
100Mbps UNMETERED Port
Gold-level power supply
5 IPs for free
DEDICATED IPMI CONNECTED TO SEPARATE NETWORK (KVM over IP, remote media)

PRICE: $169.99/monthly
order now

====================================

3. SUPERMICRO X9DRD-iF Two Xeon E5-2620, 64GB, 2x1T, 5 IPs

CPU: Hexa Core Xeon E5-2620 2.0-2.5GHz, 15MB (12 physical Cores, 24 HT cores)
RAM: 64GB ECC DDR3
HDD: 2x1000GB SATAIII WD Black 7.2K Software RAID1, HOT-SWAP!
Location: Asheville, NC
Ideal for: Storage/Backup, Virtualization.
Included:
PROACTIVE BMC LOG MONITORING
100Mbps UNMETERED Port
Gold-level power supply
5 IPs for free
DEDICATED IPMI CONNECTED TO SEPARATE NETWORK (KVM over IP, remote media)

PRICE: $329.99/monthly
order now

====================================

Operating Systems:
CentOS 7/6
Ubuntu 16.04/15.04/14.10/14.04
Debian 8/7
VMWare ESXi 5.5/5.1
Windows server 2008R2/2012R2 Standard
Windows server 2008R2/2012R2 Datacenter
XenServer 6
cPanel & WHM

Test IP address: alnitech.com

Extra IPs:
5 Usable IP Addresses (/29) - $5.00
13 Usable IP Addresses (/28) - $13.00
29 Usable IP Addresses (/27) - $29.00

Additional information:
E-mail: sales@alnitech.com
Web: https://alnitech.com
Facebook: Alnitech

Record Allowedits Label

$
0
0
Hi All,

I have a label on my access form that appears when a record is locked and the user cannot edit it. Once the user clicks "EDIT" the label disappears. However, it seems after the record auto saves or something happens that makes it locked again, the label does not appear but the user can't make chances. How can I make this happen so that the label appears anytime the record is not allowing edits? Thank you!

Have you ever used any mobile database app?

$
0
0
Hello everyone,

I just wanted to ask if anyone of you have ever used any mobile database app like HandBase, Memento or MobiDB? Is there any app that can handle complex databases on tablets?

I tried the above apps, they look promising. But may be there are any other solutions I need to consider?

Thank you in advance.

Cheers,
Kate.

need help to clean Time In&Time Out from attendance biometric records

$
0
0
currently the attach file contains the list of multiple check-in and check-out for single user at the same day

I try this approach but it does not satisfy my expected result

SELECT EnrollNumber
,DateOfCheckInOut= cast(dateinout as date)
,MinCheckIn=MIN(CASE InOutMode WHEN 0 THEN DateInOut END)
,MaxCheckOut=MAX(CASE InOutMode WHEN 1 THEN DateInOut END)
FROM tblCheckInOut WHERE
CAST(DateInOut AS DATE) >= DATEADD(dd,-DAY(cast(getdate() as date)) + 1, cast(getdate() as date))
AND CAST(DateInOut AS DATE) < DATEADD(dd,DAY(DATEADD(mm, 1, cast(getdate() as date))), DATEADD(mm, 1, cast(getdate()as date)))
GROUP BY cast(DateInOut as date), EnrollNumber;

Rersult:

EnrollNumber DateOfCheckInOut MinCheckIn MaxCheckOut
1306 2016-05-03 2016-05-03 05:17:08 NULL
1306 2016-05-05 2016-05-05 05:33:56 NULL
1306 2016-05-10 2016-05-10 05:55:40 NULL
1306 2016-05-11 2016-05-11 05:43:20 NULL
1306 2016-05-12 2016-05-12 05:52:54 NULL
1306 2016-05-16 NULL 2016-05-16 05:31:04
1306 2016-05-17 2016-05-17 12:51:54 2016-05-17 05:34:33
1306 2016-05-23 NULL 2016-05-23 05:35:31
1306 2016-05-24 2016-05-24 05:31:15 NULL
1306 2016-05-25 2016-05-25 05:34:40 NULL
1306 2016-05-26 NULL 2016-05-26 05:33:18


also I try this second solution

DECLARE @MissedPunchThreshold int
SET @MissedPunchThreshold = 20


;with attendance As (SELECT
EnrollNumber
,DateInOut
,PunchSequence = ROW_NUMBER() OVER(PARTITION BY EnrollNumber ORDER BY DateInOut)
FROM tblCheckInOut),
EmployeeTimeCTE AS (
SELECT
checkIn.EnrollNumber
,CAST(checkIn.DateInOut AS DATE) AS CheckDate
,checkIn.DateInOut AS Time_In
,checkOut.DateInOut AS Time_Out
,DateDiff(hour, checkIn.DateInOut, checkOut.DateInOut) AS HoursBetweenPunch
,checkOut.PunchSequence AS PunchOutSequence
FROM attendance AS checkIn
LEFT OUTER JOIN attendance AS checkOut
ON checkIn.EnrollNumber = checkOut.EnrollNumber
AND checkOut.PunchSequence = checkIn.PunchSequence + 1
WHERE checkIn.PunchSequence = 1
UNION ALL
SELECT
ETS_In.EnrollNumber
,CAST(ETS_In.DateInOut AS DATE) AS CheckDate
,ETS_In.DateInOut AS Time_In
,ETS_Out.DateInOut AS Time_Out
,DateDiff(hour, ETS_In.DateInOut, ETS_Out.DateInOut) AS HoursBetweenPunch
,ETS_Out.PunchSequence AS PunchOutSequence
FROM attendance AS ETS_In
INNER JOIN EmployeeTimeCTE ET
ON ET.EnrollNumber = ETS_In.EnrollNumber
AND ETS_In.PunchSequence =
CASE
WHEN ET.HoursBetweenPunch > @MissedPunchThreshold
THEN ET.PunchOutSequence
ELSE ET.PunchOutSequence + 1
END
INNER JOIN attendance AS ETS_Out
ON ETS_In.EnrollNumber = ETS_Out.EnrollNumber
AND ETS_Out.PunchSequence = ETS_In.PunchSequence + 1

)
SELECT
EnrollNumber
,CheckDate
,Time_In
,CASE WHEN HoursBetweenPunch > @MissedPunchThreshold THEN NULL ELSE Time_Out END AS Time_Out
,CASE WHEN HoursBetweenPunch > @MissedPunchThreshold THEN NULL ELSE HoursBetweenPunch END AS HoursBetweenPunch
FROM EmployeeTimeCTE
ORDER BY EnrollNumber, CheckDate
OPTION (MAXRECURSION 1000)


Please help me...
Thanks
Attached Files

Identifying redundancies with triple set PK

$
0
0
I have this relational table ENROLMENT(student#, subject-code, title, enrolemnt-date, status) containing information about the enrolments performed by the students. A student is identified by a student#. A student enrolls a subject identified by a subject-code and described by a title. Enrollment happens on enrolment date (enrolment-date) and it has a status, e.g. valid, dropped, or provisional. A triple of attributes (student#, subject-code, enrolment-date) is a primary key in the table.

I wish to show sample contents of ENROLMENT with redundant information and explain what redundancies are included in this table. I am stuck.

Code:

Student#        Sub-code#        Date                Title        Status
1                1                    27/04/2016        Database        valid
1                2                    27/04/2016        SQL                valid
2                2                    27/05/2016        SQL                Dropped

Redundant data are sub-code and date which is . Am I correct? Please clarify.

OR

Code:

Student#        Sub-code#        Date                Title              Status
1                1                    27/04/2016        Database        valid
1                1                      27/04/2016        Database        Dropped
2                2                    27/05/2016        SQL                Dropped
2                2                      27/05/2016        SQL              Valid
3                2                      27/05/2016 SQL              Dropped

Redundant data are student#, sub-code and date which is 1 1 27/04/2016 and 2 2 27/05/2016

Issue while creating same existing DB schema in a new Database

$
0
0
Hi,

I have generated Scripts of an existing DB structure using Ms Sql generate scripts feature.

When I execute the same script in a new blank DB , I get many dependency errors.

can we create a schema script from an existing DB , so that when we run no dependency errors occur ?
if yes please let me know the procedure.

I have already made dependency objects option to true while creating the script.

Regards,
Shruthi

Screen Size

$
0
0
Hi All,

I have 12 users on Access 2016 all using different size monitors. They vary so much, some screens have command buttons all over the screen on my mainform. Other screens have all the command buttons pushed to the upper left corner. As I can not size the contents of the mainform any larger than the smallest monitor allows, is there a way I can program so that:

When the form opens, it works out the screen resolution and stretches my forms to fit the resolution of each monitor?

Thanks in advance,

Simon

10.5 Storage Management Tool

$
0
0
Hi,
In DB2 9.7 i'm using Storage Management tool for a quick graphical view of storage of my DB2 database.
Now I'm switching to 10.5, but I am not able to find something similar there. Is there any graphical tool in 10.5 for storage management or should I create my own queries on SYSTOOLS.STMG_xxx tables?

EAI/ESB Test Lead -Dallas,TX‏

$
0
0
Title : EAI/ESB Test Lead
Location : Dallas, TX
Mode: Contract

Skillset:
• EAI/ESB Test Lead with hands-on MQ experience, excellent communication and coordination skills. Will be business facing.
• Pega experience (would be an add-on)
.


If you are qualified, available, interested, planning to make a change, or know of a friend who might have the required qualifications and interest, please call me ASAP at (972) 525-4161, even if we have spoken recently about a different position. If you do respond via e-mail please include a daytime phone number so I can reach you. In considering candidates, time is of the essence, so please respond ASAP. Thank you.
Sincerely yours,
Jagan Livemindz
Livemindz
8330 LBJ Fwy, Suite B 682
Dallas, TX 75243
(972) 525-4161
jaganb@livemindz.com
Note: Please allow me to reiterate that I chose to contact you either because your resume had been posted to one of the internet job sites to which we subscribe, or you had previously submitted your resume to LiveMindz. I assumed that you are either looking for a new employment opportunity, or you are interested in investigating the current job market.
If you are not currently seeking employment, or if you would prefer I contact you at some later date, please indicate your date of availability so that I may honor your request. In any event, I respectfully recommend you continue to avail yourself to the employment options and job market information we provide with our e-mail notices.
Thanks again.
Jagan




If you would like to unsubscribe from Livemindz, please click here.

Oracle DBA Required in Warren, NJ 1-2 Years Contract Only

$
0
0
Greetings..!!
Please go through the JD and let me know your interest:-

Oracle DBA
Warren, NJ
1-2 Years Contract
Only USC/GC


Description
Plan, coordinate, and administer database systems, including base definition, structure, documentation, requirements, operational guidelines and protection.
RAC (Real Application Cluster) administration experience.
Oracle 12C knowledge is a plus.
Support data migration using data pump.
Performing monitoring, SQL tracing, Diagnostic of database problems
Complex Query tuning for n-tier, mission critical, customer facing Web applications .
Managing the storage capacity of the systems.
Develop and support Database RMAN backup strategy
Perform database cloning.
Support of daily operations including job monitoring and troubleshooting the databases and issue fixings
Ensure security, control, integrity and accessibility of the data
Develop and maintain database standards, conventions, data dictionaries, data element naming standards
Bachelors Degree in Computer Science or a related technical discipline, or the equivalent combination of education, technical training, or work experience
Requires 2-5 years of related experience in the design, maintenance, and administration of relational databases
Replication /Shareplex knowledge and hands on experience is a plus.
Individual should be highly motivated, independent, self-starter.


Thanks & Regards

Deepak Tiwari
United Software Group Inc..
565 Metro Place South. Suite # 110
Dublin, OH 43017
Phone: 614-414-3130 Ext : 1107
deepak.t@usgrpinc.com
www.usgrpinc.com

how to prevent user to see tables belong to another users

$
0
0
Hi,
My db2 version is 10.5 (on linux)
My customer ask me to create a user with one table only .
I have to prevent from this user the ability to see any another table under any another schema .
For examp : when i connected the db with this user :
list tables for all - return just the table under this user .
select * from syscat.tables -same thing .
db2look - same thing
etc' .
it is possible ?

Out of my depth...Help?!

$
0
0
Hi Db community,

I am new to site and would greatly appreciate some advice.

I have been asked to put forward a design idea for a new database by the company I have just joined. Which is great and all but, it has been around 8 years since I have even touched MS Access or any other programs even remotely linked to databases with the exception of Excel.

Basically what they are looking for is a Translation Database. The company is a retail company selling clothing and other such items to international customers. Currently they use a third party to translate all items in a product launch into the required target languages, the problem being rather than storing and retaining the common recurring phrases for example "100% Cotton" they are having the same information translated again and again 9 times a year.

So the goal is to develop a database that we can pass our data through before sending it off to the translation agency, to cut out things that have been previously translated and to store/add any new translations to the memory.

The db must:

- Translate full sentences/descriptions - with a rule to say that if it hasn't seen the full item description before, it is to not translate any of it.
- Be user friendly by people with next to no database background.
- Be able to be used for several languages.
- Be able to add additional languages at any time.

I realise that this is a huge ask, but any help anyone could provide would be amazing...

Thanks

Null instead '0000-00-00 00:00:00' in mysql 5.7

$
0
0
Before: mysql 5.6. One of the columns in the table is created as follows:

`f_stamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
When i view this field in mysql client or using DataGrip, this field is displayed correctly.

Now: mysql 5.7. The field is not displayed correctly (more precisely, it is causes en error). I delete from mysql config following flags: NO_ZERO_DATE, NP_ZERO_IN_DATE and STRICT_TRANS_TABLES. And now, looking at this field i see:

- Using mysql-client: 0000-00-00 00:00:00
- DataGrip: null
How to change server's option for support this non-standard datetime value, initialize by '0000-00-00 00:00:00' ?

RankFirstHosting.Com | Cheap Shared Hosting with Multiple IPs | cPanel & Softaculous

$
0
0
Rankfirsthosting.com is an excellent platform for perfect SEO hosting. We provide you with an amazing yet low priced hosting plan for your growing business. At Rankfirsthosting.com, we help you to get started with your business with precisely what that is necessary; a trustworthy and speedy hosting plan. While your business grows we feature stronger SEO hosting plans to enable you to be prominent in the industry.

Please take a look at our shared seo hosting plans below and order your desired plan now by using the links mentioned with each plan.

⇛ Our Shared SEO Hosting Plan 1
10 IP Addresses
10 GB Disk Space
80 GB Bandwidth
Price: $15 per month
»»» CLICK HERE TO ORDER PLAN 1 «««

⇛ Our Shared SEO Hosting Plan 2
20 IP Addresses
20 GB Disk Space
120 GB Bandwidth
Price: $30 per month
»»» CLICK HERE TO ORDER PLAN 2 «««

⇛ Our Shared SEO Hosting Plan 3
30 IP Addresses
30 GB Disk Space
160 GB Bandwidth
Price: $45 per month
»»» CLICK HERE TO ORDER PLAN 3 «««

⇛ Our Shared SEO Hosting Plan 4
40 IP Addresses
40 GB Disk Space
200 GB Bandwidth
Price: $60 per month
»»» CLICK HERE TO ORDER PLAN 4 «««

⇛ Our Shared SEO Hosting Plan 5
50 IP Addresses
50 GB Disk Space
240 GB Bandwidth
Price: $75 per month
»»» CLICK HERE TO ORDER PLAN 5 «««

⇛ Our Shared SEO Hosting Plan 6
60 IP Addresses
60 GB Disk Space
280 GB Bandwidth
Price: $90 per month
»»» CLICK HERE TO ORDER PLAN 6 «««

⇛ Our Shared SEO Hosting Plan 7
70 IP Addresses
70 GB Disk Space
320 GB Bandwidth
Price: $99 per month
»»» CLICK HERE TO ORDER PLAN 7 «««

⇛ Our Shared SEO Hosting Plan 8
80 IP Addresses
80 GB Disk Space
360 GB Bandwidth
Price: $100 per month
»»» CLICK HERE TO ORDER PLAN 8 «««

⇛ Our Shared SEO Hosting Plan 9
90 IP Addresses
90 GB Disk Space
400 GB Bandwidth
Price: $112.50 per month
»»» CLICK HERE TO ORDER PLAN 9 «««

⇛ Our Shared SEO Hosting Plan 10
100 IP Addresses
100 GB Disk Space
440 GB Bandwidth
Price: $125 per month
»»» CLICK HERE TO ORDER PLAN 10 «««

⇛ Our Shared SEO Hosting Plan 11
110 IP Addresses
110 GB Disk Space
480 GB Bandwidth
Price: $137.50 per month
»»» CLICK HERE TO ORDER PLAN 11 «««

⇛ Our Shared SEO Hosting Plan 12
120 IP Addresses
120 GB Disk Space
520 GB Bandwidth
Price: $150 per month
»»» CLICK HERE TO ORDER PLAN 12 «««

⇛ Our Shared SEO Hosting Plan 13
130 IP Addresses
130 GB Disk Space
560 GB Bandwidth
Price: $162.50 per month
»»» CLICK HERE TO ORDER PLAN 13 «««

⇛ Our Shared SEO Hosting Plan 14
140 IP Addresses
140 GB Disk Space
600 GB Bandwidth
Price: $175 per month
»»» CLICK HERE TO ORDER PLAN 14 «««

⇛ Our Shared SEO Hosting Plan 15
150 IP Addresses
150 GB Disk Space
640 GB Bandwidth
Price: $187.50 per month
»»» CLICK HERE TO ORDER PLAN 15 «««

⇛ Our Shared SEO Hosting Plan 16
160 IP Addresses
160 GB Disk Space
680 GB Bandwidth
Price: $160 per month
»»» CLICK HERE TO ORDER PLAN 16 «««

⇛ Our Shared SEO Hosting Plan 17
170 IP Addresses
170 GB Disk Space
720 GB Bandwidth
Price: $170 per month
»»» CLICK HERE TO ORDER PLAN 17 «««

⇛ Our Shared SEO Hosting Plan 18
180 IP Addresses
180 GB Disk Space
760 GB Bandwidth
Price: $180 per month
»»» CLICK HERE TO ORDER PLAN 18 «««

⇛ Our Shared SEO Hosting Plan 19
190 IP Addresses
190 GB Disk Space
800 GB Bandwidth
Price: $190 per month
»»» CLICK HERE TO ORDER PLAN 19 «««

⇛ Our Shared SEO Hosting Plan 20
200 IP Addresses
200 GB Disk Space
840 GB Bandwidth
Price: $200 per month
»»» CLICK HERE TO ORDER PLAN 20 «««

All these packages come with all the best features including cPanel, Softaculous, PHP, Perl and Python, MySQL database, PhpMyAdmin, Ruby on Rails, FTP & sFTP, Cron jobs, ReCommerce ready, Shell access, Error pages and much more.

Viewing all 13329 articles
Browse latest View live