How to create table in cassandra

0 votes

Hi Guys,

I am new in cassandra. The syntax of cassandra is different enough compare with other language. I am facing problem to create one table in cassandra.

Can anyone help me?

Thank You

Apr 1, 2020 in Big Data Hadoop by akhtar
• 38,230 points
383 views

1 answer to this question.

0 votes

Hi@akhtar,

To create table in cassandra, you have to create keyspace first.

  • To create keyspace, use the bellow given command.

$ create keyspace University with replication = {'class' :'NetworkTopologyStrategy','replication_factor':1};
  • Create table.

create table University.student (
   ... Roll No int,
   ... Name text,
   ... dept text,
   ... primary key(Roll No)
   ... );

Hope this helps!!

Enroll with our Cassandra training online to learn more.

Thank You

answered Apr 1, 2020 by MD
• 95,440 points

Related Questions In Big Data Hadoop

0 votes
1 answer

How to create smaller table from big table in HIVE?

You could probably best use Hive's built-in sampling ...READ MORE

answered Sep 24, 2018 in Big Data Hadoop by digger
• 26,740 points
1,463 views
0 votes
1 answer

How to create a managed table in Hive?

You can use this command: create table employee(Name ...READ MORE

answered Dec 14, 2018 in Big Data Hadoop by Omkar
• 69,210 points
5,097 views
0 votes
1 answer

How to create a Hive table from sequence file stored in HDFS?

There are two SerDe for SequenceFile as ...READ MORE

answered Dec 18, 2018 in Big Data Hadoop by Omkar
• 69,210 points
4,511 views
0 votes
1 answer

How to create a parquet table in hive and store data in it from a hive table?

Please use the code attached below for ...READ MORE

answered Jan 28, 2019 in Big Data Hadoop by Omkar
• 69,210 points
18,025 views
+1 vote
1 answer

Hadoop Mapreduce word count Program

Firstly you need to understand the concept ...READ MORE

answered Mar 16, 2018 in Data Analytics by nitinrawat895
• 11,380 points
10,521 views
0 votes
1 answer

hadoop.mapred vs hadoop.mapreduce?

org.apache.hadoop.mapred is the Old API  org.apache.hadoop.mapreduce is the ...READ MORE

answered Mar 16, 2018 in Data Analytics by nitinrawat895
• 11,380 points
2,165 views
+2 votes
11 answers

hadoop fs -put command?

Hi, You can create one directory in HDFS ...READ MORE

answered Mar 16, 2018 in Big Data Hadoop by nitinrawat895
• 11,380 points
103,803 views
–1 vote
1 answer

Hadoop dfs -ls command?

In your case there is no difference ...READ MORE

answered Mar 16, 2018 in Big Data Hadoop by kurt_cobain
• 9,390 points
4,232 views
0 votes
1 answer

How to set pssword based authentication in cassandra?

Hi@akhtar, You can set password to your cassandra ...READ MORE

answered Apr 1, 2020 in Big Data Hadoop by MD
• 95,440 points
423 views
0 votes
1 answer

How to create one job in Sqoop?

Hi@akhtar, You can create one job for future ...READ MORE

answered Apr 29, 2020 in Big Data Hadoop by MD
• 95,440 points
700 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP