How to View entries in a SQL Server 2012 database [closed] - database

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
As you can tell I am quite new at this, but is it possible to view entries in a database?
I have tried looking in SQL Server 2012 Management Studio, but I was lost!
Sorry to sound a bit dumb
J.J.I Mahone

Yes it is. In SQL Server 2012 Management Studio you can right click on a table and select 'select rows'. By this you can see the entries of each table of the database.
Here is the image.

Related

How to transfer data from SQL Server to Excel [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
The orders table is the sales invoice information.
Transferring this information from SQL Server to Excel is possible with a query.
There is a data transfer wizard method to transfer in the
data, but I have to do it with C# code or T-SQL query.
Why do you have to make it with T-SQL or C#?
You can make with SSIS package and call that from C# or T-SQL.
If that is possible, I suggest trying it.

How to insert or delete query with jobs in SQL Server? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
I want to insert or update or delete in database automatically after cross a time e.g 8 hours.
Is it with jobs in SQL Server?
Thanks.
You can create a SQL Server job with TSQL code in it and schedule this job as appropriate.

SQL Server Management Studio Setting [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
How to enable the more accurate help, please ?
Because I have this :
Some time ago I have wondered the same thing, as I expect to receive information similar to this one:
REPLACE(string_expression NVARCHAR, string_pattern NVARCHAR, string_replacement NVARCHAR)
Unfortunately, there are very only a few options related to intellisense in SSMS:
and you cannot change the way function information is displayed.
Sorry, I found...
SQL Complete do that job. I thought it was a SQL Server Management Studio option.
With SQL Complete :

Failed to update database "Adventure Works 2012" because the database is read-only [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
Failed to update database "Adventure Works 2012" because the database is read-only. using sql server 2012
You are being incredibly vague with your question but you should be able to use:
ALTER DATABASE [AdventureWorks] SET READ_WRITE

How to move database from one SQL Server 2008 R2 machine to another? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I have to move a database from one SQL Server 2008 R2 to another.
How can I perform this task?
Someone suggest me to make backup form first server and restore on the second server.
May be this correct?
There are many possibilities, depending on your constraints.
you can use the detach/attach method
you can use the backup/restore method
you can use the Copy Database Wizard in SSMS

Resources