Viewing 15 posts - 451 through 465 (of 790 total)
Ramesh (1/16/2009)
January 16, 2009 at 2:58 am
Santhosh (1/16/2009)
Abhijit More (1/16/2009)
This worked fine without the SUM function
SELECT tmp.PojID, tmp.Cat,
------------------SUM removed
(Case when tmp.PojID = tmpPoj.PojID AND tmpPoj.Cat = tmp.Cat THEN Total...
January 16, 2009 at 2:23 am
Try this:
GROUP BY Period, SumCol4, SumCol5, SumCol6, SumCol7 WITH ROLLUP
Hope it will work!
January 16, 2009 at 1:58 am
Also I asked this question... and don't forget that now we have available the SQL Server 2008! ...vs Oracle 11g!
As I search in the Internet both technologies are very nice...
January 15, 2009 at 7:20 am
RBarryYoung (1/11/2009)
Dugi:FYI, you can use SQL in Access. It is not an "either..or" situation.
Hehe for a long time I have this information my friend, everyday I'm using...
January 11, 2009 at 12:38 pm
Ok Jeff there is the simple code from me...so your code is in advanced level 😛
SELECT
SUBSTRING(Y,3,1) AS Y -- this retrieve allways the second value...
January 11, 2009 at 7:46 am
GilaMonster (1/11/2009)
Dugi (1/11/2009)
I don't know what is your experience with MS Access...but if you want to learn SQL you should leave Access at all!What's wrong with MS Access?
Nothing at all...for...
January 11, 2009 at 7:38 am
donyell011 (1/11/2009)
how and where should i start in learning access and sql? im a newbie and im very interested.:)
I don't know what is your experience with MS Access...but if you...
January 11, 2009 at 3:55 am
Once again the famous Jeff's table Tally table working wonderfull!
:w00t::cool::w00t:
Super solution Jeff!
January 10, 2009 at 2:57 pm
I didn't read in deep for the Resource DB, I just was wondering why the other Sys DBs are available for BCK and RDB is not ! Anyway thnx my...
January 10, 2009 at 2:11 pm
george sibbald
thats because MS don't want you touching it
Till we are discussing for the System DBs, also the Master DB is very important and I'm sure that it is much...
January 10, 2009 at 1:41 pm
Jack Corbett (1/10/2009)
January 10, 2009 at 1:16 pm
...finally try this where you can find more info!
SQL Server Migration Assistant for Oracle (SSMA for Oracle)
Version 4.0
http://www.microsoft.com/sqlserver/2005/en/us/migration-oracle.aspx
😉
January 10, 2009 at 1:02 pm
Sure that you can do it with SSIS, but if you have new versions like Oracle 9i or 10g or 11g yes you can do ti without anyproblem! Anyway with...
January 10, 2009 at 12:59 pm
Michael Earl (1/9/2009)
[font="Courier New"]CREATE TABLE MyTable (ID INT)
GO
CREATE CLUSTERED INDEX idxMyTable_CL_ID ON MyTable(ID)
GO
CREATE NONCLUSTERED INDEX idxMyTable_ID ON MyTable(ID)
GO
SELECT c.name, b.name
FROM sys.tables b
INNER JOIN sys.schemas c...
January 9, 2009 at 7:59 am
Viewing 15 posts - 451 through 465 (of 790 total)