How to transfer data from SQL Server to Excel [closed] - sql-server

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.

Related

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 :

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

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.

How to import MS Access data into SQL Server using vb.net [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
I have an old MS Access 2003 file that contains information about the personnel on a particular agency. The number of records in that database will range from 800 to 1500.
I want to import those records into my SQL Server database. Is it possible that the importing of data can be done programatically using Visual Basic.net?
If possible, please lend me some help. Thank you.
Here is the structure of the table that I want all the data to be imported
ID
Fname
Mname
Lname
Address
Status
You can either use the MS Access Upsize Wizard (see the following link http://office.microsoft.com/en-us/access-help/use-the-upsizing-wizard-HP005273009.aspx) or the SQL Server Migration Assistant (see the following link for details http://msdn.microsoft.com/en-us/library/hh313041(v=sql.110).aspx)

SQL Server OLE DB - select data from DB using RowSet [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 2 years ago.
Improve this question
I want to ask how to select data from DB using OLE DB CRowSet in C++. How to access specific row, specific column etc. like in ADO .NET using DataTable. Can you give me some tutorial please?
Thanks
This article was helpful for me:
http://www.codeguru.com/cpp/data/mfc_database/oledb/article.php/c1119/OLE-DB-Templates---A-light-and-simple-Data-Access-Method.htm

Resources