Viewing 15 posts - 1 through 15 (of 29 total)
Thanks Jason, this should be exactly what I need!
May 28, 2015 at 2:10 pm
Hi imex, thanks for your quick reply.
I just discovered I only need the latest web_survey_date for each user id, how to do that?
Is it possible to complete this within...
January 23, 2013 at 5:05 pm
WITH CTE AS(
SELECT ID, Group_Name, ROW_NUMBER() OVER( PARTITION BY ID ORDER BY START_TIME) rn
FROM pivot_test)
SELECT ID, START_TIME,
...
November 5, 2012 at 3:31 pm
Wow Thank you, you saved my day! I never learned SQL from any courses or anything, this forum is where I learn most of my things, thanks teacher!
August 22, 2012 at 2:09 pm
haha sorry I know this will be a stupid question. How do I create the view into a specific database?
Originally I had,
CREATE VIEW aggTest as...
Then I managed to find...
August 22, 2012 at 1:46 pm
Cool, this might be the solution. Two questions,
1) I followed your sql, the command executed successfully, but I can't seem to find it, where is the view stored?
2) Is it...
August 22, 2012 at 1:29 pm
Then is it possible to to write an SQL that will summarize the table into what I want? (permanately turning the table into a summarized table)
August 22, 2012 at 1:09 pm
I tried the 4 steps you mentioned, and the error message changed this time.
The 32-bit OLE DB Provider "Microsoft.ACE.OLEDB.12.0" cannot be loaded in-process on a 64-bit SQL Server.
What to do...
July 30, 2012 at 12:09 pm
Just tried the code you provided, still the same error.
SELECT * FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0', 'Excel 12.0; Database = C:\abc.eeee.xls', 'Select * FROM [Sheet1$]')
Same Error 🙁
July 27, 2012 at 3:10 pm
I am using Excel 2010, how should the query be edited?
So..the way I am importing and updating data is correct?
July 27, 2012 at 2:57 pm
Is it possible to use this statement while importing data from excel at the "Write a query to specify the data to transfer" page? (before the table is created)
SELECT...
June 21, 2012 at 5:16 pm
Thank you very much, it solved my problem.
June 21, 2012 at 4:41 pm
Sorry, it's the firewall of the server machine. The issue is solved now, after I identified it's firewall problem, I did a little bit of research myself, and followed the...
April 30, 2012 at 10:13 am
I have located the general direction of the problem.
I was able to connect when I turn off my firewall. So it MUST BE a firewall issue.
What should I do now?
April 30, 2012 at 9:39 am
Viewing 15 posts - 1 through 15 (of 29 total)