Viewing 15 posts - 3,556 through 3,570 (of 5,394 total)
For a better answer we would need to take a look at the actual execution plan. Can you capture and upload it?
Also, the table and index script would help a...
December 27, 2010 at 5:56 am
Can you give us a table definition script and some sample data?
Please read the article linked in my signature line and you will find out how to post both.
December 27, 2010 at 5:52 am
This should do the trick:
WITH MonthNumbers ([1], [2], [3], [4], [5], [6], [7], [8], [9], [10], [11], [12])
AS (
SELECT 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11,...
December 27, 2010 at 3:56 am
Please, don't take offence. but... wait until you receive your books and start studying.
Things will be much clearer.
December 27, 2010 at 1:35 am
My bad, the parameter had to be passed in as boolean...
-- Disable data access
EXEC sp_serveroption @server = 'linked_server_name'
,@optname = 'data access' ...
December 23, 2010 at 9:11 am
... buy more disk?
No, seriously, what is your concern exactly?
You may take a look at Paul Randal's VLDB maintenance checklist to get started.
December 23, 2010 at 9:04 am
You could set up a job to disable data access and the enable it back.
-- Disable data access
EXEC sp_serveroption @server = 'linked_server_name'
,@optname =...
December 23, 2010 at 8:56 am
No way, AFAIK.
It should have been in Full recovery.
December 23, 2010 at 6:22 am
The view exists, but you don't have permissions.
Which user is connected to SQL*Plus?
SELECT USERNAME FROM V$SESSION WHERE AUDSID=userenv('sessionid');
December 23, 2010 at 6:19 am
Enterprise Manager (or DBConsole) is the web application that controls and administers the database.
If you created a database with DBCA, you probably created the DBConsole as well.
Try opening https://localhost:1158/em
If...
December 23, 2010 at 3:14 am
Resender (12/23/2010)
December 23, 2010 at 2:24 am
Wow! I love gifts!
This one looks pretty cool. I love the idea of a "script wiki" and the possibility to add some scripts of mine.
I coded something amazingly similar to...
December 23, 2010 at 1:36 am
ankit.dhasmana (12/22/2010)
Both Table A and B contains around 6.5 Million records.
I see. However I have no clue of how the optimizer will decide to work with the new indexes, beacause...
December 22, 2010 at 6:38 am
SQLkiwi (12/22/2010)
It seems like you are still quite emotional about it, yes 😛
You're probably right, Paul.
December 22, 2010 at 5:56 am
If you have enough RAM, I wuold suggest installing VirtualBox, some flavour of linux and play with Oracle on that machine.
Oracle-Base has great guides on how to install. For instance:
http://www.oracle-base.com/articles/11g/OracleDB11gR2InstallationOnFedora14.php
December 22, 2010 at 4:37 am
Viewing 15 posts - 3,556 through 3,570 (of 5,394 total)