Viewing 15 posts - 1,441 through 1,455 (of 5,394 total)
You maybe could trick the installer mounting a disk as a folder in the C drive.
You just have to find where the installer looks for free space and tries to...
August 30, 2012 at 9:50 am
You mean you have Oracle data on the system drive?
Doesn't look like a great idea...
August 30, 2012 at 9:38 am
Increase disk space.
2.75 GB free on the system drive is not enough anyway to have decent performance.
August 30, 2012 at 9:14 am
No particular permissions required.
The transaction isolation level is not a database setting, it's a connection setting.
August 30, 2012 at 9:12 am
SELECT ID, NAME, "ADD"
FROM source
UNPIVOT ( "ADD" FOR col IN (ADD1, ADD2, ADD3, ADD4, ADD5, ADD6));
Given that your table is called source and has the columns (ID, NAME, ADD1, ADD2,...
August 30, 2012 at 9:08 am
Also, you didn't provide any table name. Is "source" the name of your table?
August 30, 2012 at 9:02 am
vp7986 (8/30/2012)
Can you give me this as columns names...
August 30, 2012 at 9:01 am
🙂
Sins of a past life boiling to the surface...
August 30, 2012 at 7:16 am
WITH source(ID, NAME, ADD1, ADD2, ADD3, ADD4, ADD5, ADD6) AS (
SELECT 1, 'ABC', '12B', '13B', '14B', '15B', '16B', '17B' FROM dual
UNION ALL
SELECT 2, 'BBC', '10V', 'VCF', 'BB', NULL, NULL,...
August 30, 2012 at 6:58 am
Another possible option: http://spaghettidba.com/2011/05/26/changing-server-collation/
August 30, 2012 at 6:36 am
You have to set it static before asking for a firewall rule.
Now your port is dynamic, which means that it may change every time the service starts.
Choose a port and,...
August 30, 2012 at 1:41 am
Sqlism (8/29/2012)
how come he is able to connect to default instance ? but not the named instance ?
The network admins could have opened the default port only.
I suspect you're on...
August 29, 2012 at 3:34 pm
I would:
1) check if the named instance is reachable from the client machine. You can do that specifying the port number in the "server name" box using a comma: SERVER,port
2)...
August 29, 2012 at 2:02 am
Glad you sorted it out!
August 28, 2012 at 7:41 am
It should work with CR 9.
Have you tried creating the table?
August 28, 2012 at 7:40 am
Viewing 15 posts - 1,441 through 1,455 (of 5,394 total)