Click here to Skip to main content
15,902,777 members
Home / Discussions / Database
   

Database

 
AnswerRe: like query Pin
zahedonline21-Jul-08 2:25
zahedonline21-Jul-08 2:25 
QuestionMy table have to be like this Pin
Member 387988118-Jul-08 0:49
Member 387988118-Jul-08 0:49 
AnswerRe: My table have to be like this Pin
Ashfield18-Jul-08 1:12
Ashfield18-Jul-08 1:12 
GeneralRe: My table have to be like this Pin
Paul Conrad18-Jul-08 4:16
professionalPaul Conrad18-Jul-08 4:16 
GeneralRe: My table have to be like this Pin
Ashfield18-Jul-08 5:21
Ashfield18-Jul-08 5:21 
GeneralRe: My table have to be like this Pin
Alsvha18-Jul-08 9:03
Alsvha18-Jul-08 9:03 
GeneralRe: My table have to be like this Pin
Paul Conrad18-Jul-08 9:07
professionalPaul Conrad18-Jul-08 9:07 
QuestionAvoiding #Error in Microsoft Access 2007 Pin
fifothekid17-Jul-08 22:18
fifothekid17-Jul-08 22:18 
QuestionAn error encountered when ms sql server 2005 have to send a lots of data Pin
dasha_pl17-Jul-08 21:55
dasha_pl17-Jul-08 21:55 
AnswerRe: An error encountered when ms sql server 2005 have to send a lots of data Pin
Wendelius18-Jul-08 5:29
mentorWendelius18-Jul-08 5:29 
GeneralRe: An error encountered when ms sql server 2005 have to send a lots of data Pin
dasha_pl21-Jul-08 6:54
dasha_pl21-Jul-08 6:54 
GeneralRe: An error encountered when ms sql server 2005 have to send a lots of data Pin
Wendelius21-Jul-08 8:29
mentorWendelius21-Jul-08 8:29 
GeneralRe: An error encountered when ms sql server 2005 have to send a lots of data Pin
dasha_pl21-Jul-08 20:27
dasha_pl21-Jul-08 20:27 
GeneralRe: An error encountered when ms sql server 2005 have to send a lots of data Pin
dasha_pl22-Jul-08 1:52
dasha_pl22-Jul-08 1:52 
GeneralRe: An error encountered when ms sql server 2005 have to send a lots of data Pin
Wendelius22-Jul-08 5:33
mentorWendelius22-Jul-08 5:33 
GeneralRe: An error encountered when ms sql server 2005 have to send a lots of data Pin
dasha_pl22-Jul-08 21:44
dasha_pl22-Jul-08 21:44 
GeneralRe: An error encountered when ms sql server 2005 have to send a lots of data Pin
Wendelius23-Jul-08 5:48
mentorWendelius23-Jul-08 5:48 
QuestionExcel Query [modified] Pin
Sunil Wise17-Jul-08 21:01
professionalSunil Wise17-Jul-08 21:01 
AnswerRe: Excel Query [modified] Pin
Sunil Wise17-Jul-08 21:32
professionalSunil Wise17-Jul-08 21:32 
QuestionHow to insert data from MS SQL server in MS EXCEL Sheet? Pin
guriqbal8717-Jul-08 4:22
guriqbal8717-Jul-08 4:22 
AnswerRe: How to insert data from MS SQL server in MS EXCEL Sheet? Pin
leoinfo17-Jul-08 5:17
leoinfo17-Jul-08 5:17 
This example is using SQL 2005.

Create a new Excel file: c:\testXL.xls
Open the file and write ID into the cell A1, FirstName into the cell B1.
Sace and close the file.

The code below will add 3 rows to the Excel file.
CREATE TABLE #T (ID INT IDENTITY(1,1), FirstName nvarchar(20))
INSERT INTO #T (FirstName) SELECT 'John'
INSERT INTO #T (FirstName) SELECT 'Kyle'
INSERT INTO #T (FirstName) SELECT 'Stacey'

INSERT INTO 
	OPENROWSET (
		  'Microsoft.Jet.OLEDB.4.0'
		, 'Excel 8.0;Database=c:\testXL.xls;HDR=YES;'
		, 'SELECT ID, FirstName FROM [Sheet1$]'
	)
SELECT 	ID, FirstName  
FROM #T

DROP TABLE #T


Remember, you have to have the Excel file closed while running the query.

In order to have the code above working PROBABLY you'll have to run also this code to enable *Ad Hoc Distributed Queries* usage.

EXEC sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
EXEC sp_configure 'Ad Hoc Distributed Queries', 1;
GO
RECONFIGURE;
GO

GeneralRe: How to insert data from MS SQL server in MS EXCEL Sheet? Pin
guriqbal8720-Jul-08 20:50
guriqbal8720-Jul-08 20:50 
AnswerCross Post Pin
Paul Conrad17-Jul-08 16:51
professionalPaul Conrad17-Jul-08 16:51 
QuestionSending Email Pin
jonhbt17-Jul-08 3:38
jonhbt17-Jul-08 3:38 
AnswerRe: Sending Email Pin
Wendelius17-Jul-08 8:06
mentorWendelius17-Jul-08 8:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.