-2
votes
0answers
11 views

Open Source CMS for designing storefront (online ecommerce) application using Hibernate [closed]

I need to create a CMS based Web Site in JAVA with some of the following proposed technologies: JAVA 7, Spring 3.x, Hibernate 3.x, Postgresql Database and Apache Tomcat. Could you please specify … ...
0
votes
2answers
48 views

Doctor scheduling database design

I got this below user interface for scheduling functionality. I need to setup the doctors available time for some days for each week of the month. How should i create the table for handling this. ...
0
votes
1answer
46 views

Convert Rails Sqlite3 db to Oracle or Db2 or MS SQL Server [closed]

i have a rails application with sqlite3 as default database. I want to switch my sqlite3 to another db between DB2, ORACLE or Microsoft SQL SERVER. Can i only replace the database without touch the ...
0
votes
1answer
21 views

Converting from Oracle to MSSQL

Using XML, the code piece in question looks like: <field name="case" when max(b.expected_date) %lt% current_date then %q%0000-00-00%q% else to_char(max(b.expected_date), %q%YYYY-MM-DD%q%) end" ...
1
vote
1answer
70 views

Handle huge amount of data using Java EE [closed]

We have a Java EE application that support Oracle, MySQL and SQL Server vendors. we are using a view model to view the fetched data from DB, also using pagination in the DAO model, and that's working ...
0
votes
0answers
28 views

ORACLE vs SQL Server from text data type point of view

These days I am facing a problem related to text datatype differences between Oracle and SQL Server. More exactly I am comparing a concatenation of chars from Oracle with a varchar column from SQL ...
2
votes
1answer
37 views

Convert Oracle Trigger to Sql Server trigger

I am new to Sql Server and having difficulty to convert the oracle triggers to Sql server. Can some one help me with that.Here is one of the example: create or replace TRIGGER "NEW".TRG_dummy ...
-2
votes
5answers
118 views

Remove unused parent records from a SQL database table

Tests performed in SQL Server 2012 reveal that the command DELETE FROM dbo.TableName halts and returns an error if removing even a single record in the table would lead to a foreign key violation. No ...
-1
votes
0answers
23 views

Connect to SQL Server from Oracle using a database link [duplicate]

This question might be a duplicate, but I am not sure of the answers already provided. Hence I am asking once again. I am trying to connect to a remote SQL Server (2008 R2) database from Oracle (11g) ...
0
votes
1answer
43 views

Bulkcopy data from Oracle to SQL Server : String was not recognized as a valid Boolean

I am trying to copy data from Oracle to SQL Server using bulkcopy. The problem is that Oracle's boolean data is stored as varchar2(1) as t and f while SQL Server boolean data type is bit and stored as ...
1
vote
1answer
39 views

REGEXP_LIKE conversion in SQL Server T-SQL

I have come across this line in an old report that needs converting to SQL Server. REGEXP_LIKE (examCodes, learner_code) examCodes being the source and learner_code being the pattern. I know that ...
0
votes
3answers
47 views

how does “case when index” statement compare to “case index” statement

I tried to research about this command, but I can't seem to find a concrete explanation to it. What is "case when index"? what does it do? how is it differ from case when? When is it used? Is this ...
0
votes
1answer
25 views

Does SQL Server have simplified cursor record fetching comparable to Oracle?

For many years Oracle PL/SQL has featured an amazingly quick & simple method code for fetching from a cursor. For a simple cursor like: CURSOR emp_cur IS SELECT * FROM EMPLOYEE; columnnames ...
0
votes
2answers
51 views

Date Conversion Oracle to SQL Server

having a bit of a head scratching moment. RTrim(To_Char(startdate, 'Day')) || ' ' || To_Char(startdate, 'DD') || ' ' || RTrim(To_Char(startdate, 'Month')) || ' ' || To_Char(startdate, 'YYYY') ...
2
votes
3answers
59 views

most efficient way to UPDATE a table using critera from other tables?

What is the most efficient/fastest way to update a table that requires foreign keys (to other tables) in the criteria? I normally do it this way: UPDATE table1 WHERE table1_id in (SELECT table1_id ...
-2
votes
0answers
78 views

Basic differences between sql and transact sql? [closed]

I am looking for considerable differences between SQL & T-SQL. Are they having any query differences or just used by two different vendors.
-6
votes
0answers
104 views

How to add columns to a SQL result set? [closed]

I am trying to create a sql statement that returns a single record from data over multiple records. In a way, I am trying to concatenate arbitrary selects on the same table as columns to the result ...
1
vote
2answers
117 views

Performance Problems on SQL Server + .net C# Application

I support an application that runs on SQL Server and was developed on .net c#. The application gets its information from the local system (ERP) and process it in a few batches during the day (most of ...
-1
votes
0answers
47 views

Selecting a Development Platform [closed]

I'm trying to decide between two main options that we’ve been considering for developing a web application: SQL Server + .net or Oracle + Java. Things to consider: Information is fed to the ...
0
votes
2answers
29 views

Scheduler Get Data From SQL Server to Oracle

I want create a task as scheduler to get Data From SQL Server 2000 to Oracle ? how i can do it ? thanks
0
votes
1answer
37 views

MSSQL equivalent into Oracle

I'm new in Oracle database. What I need is equivalent query in Oracle like this example from MSSQL (Reading results in Management Studio). On Oracle side, I'm using Golden6 from Benthic Software. ...
0
votes
2answers
42 views

Can I use same foriegn key for different tables in sql

Suppose I am making a voting system for teachers and want to make voting_id a primary key for two tables teachers and senior teachers and making voting_id a single foreign key for both the tables in ...
0
votes
1answer
84 views

How to write procedure with same no. of parameter in Oracle & SQL Server?

SQL Server stored procedure: CREATE PROC proc1 AS SELECT ename FROM employee Oracle Server stored procedure: CREATE OR REPLACE PROCEDURE proc1 ( cv_1 IN OUT SYS_REFCURSOR ) AS BEGIN OPEN cv_1 FOR ...
4
votes
2answers
105 views

Common SQL to compare dates in SQL Server and ORACLE

I need to include a date comparison in my query where I compare a date string to a DATETIME column but i need it to work on both ORACLE and SQL Server and not have two separate queries. Are there any ...
0
votes
8answers
211 views

Set default value in select statement(not use UNION statement)

I would like to have a SELECT statement that will return specified default values if no rows are returned from the database. We can use UNION to get the desired result, but this gives an extra ...
0
votes
2answers
67 views

Migrate Sql Server Stored Procedure to Oracle PL/SQL

The below stored procedure works for SQL Server (before I made some oracle specific changes). Now this stored procedure must work for Oracle too. The Oracle Sql Developer which I use complains at the ...
1
vote
1answer
86 views

How to convert Oracle procedures to Microsoft SQL Server?

I've been searching for a free tool that can convert Oracle stored procedures, functions and packages to Microsoft SQL Server. Actually these two databases are too different and I've managed to find ...
4
votes
2answers
166 views

T-SQL equivalent to oracle sql where clause with multiple columns

Let's look for example Oracle SQL, which works perfectly: Sample data: SQL> create table test (a number, b number); SQL> insert into test values(1, 1); SQL> insert into test values(1, 2); ...
3
votes
5answers
119 views

Fastest way to find distinct matching records

I have two tables A and B. Both have same structure. We find matching records between these two. Here are the scripts CREATE TABLE HRS.A ( F_1 NUMBER(5,0), F_2 NUMBER(5,0), F_3 NUMBER(5,0) ); CREATE ...
5
votes
1answer
104 views

Best way to enforce table participation

I am not sure what will be the best way to enforce participation in the following database design (can be for SQL server, Oracle, mySQL etc.). I have two tables: Factory and Worker. I have created two ...
-1
votes
1answer
48 views

Need Help Translating This Oracle SQL Into T-SQL [closed]

Need help to convert the following Oracle SQL query into an T-SQL query SELECT rh.user_name, rh.report_name, rh.report_run_date FROM report_history rh, (SELECT max(report_run_date) as maxdate, ...
5
votes
1answer
102 views

Why is the output different in SQL Server and same in Oracle?

Why is the output of below two queries is different in SQL Server and same in Oracle ? SELECT 20.0/-2.0/5 SELECT 20/(-2.0)/5
0
votes
1answer
50 views

ORA-00937 not a single-group group function converted from SQL Server

I'm getting an ORA-00937 error when running the following ORACLE statement, I'm very new to Oracle (T-SQL is more my bag). I've converted a select statement previously written in SQL I'm at a loss as ...
0
votes
2answers
35 views

Query to represent percentages in terms of min and max

I have a column that contain some values: Values 10 20 30 40 50 I need a query that would basically give me two columns like this : Values PercentageValues 10 0 20 x 30 ...
0
votes
3answers
55 views

Bridge Between Oracle and MS SQL Server

We are making an application which is machine dependent. Now we deploy our application on several client machines but problem is that every client have database from different vendors. Currently we ...
0
votes
1answer
42 views

Entity Framework with Multiple DB Engines

We have a few .Net application that we would like to start using Entity Framework 5.0 but the problem is that our customers can choose to use one of any of the following database engines: SQL Server ...
0
votes
1answer
197 views

Clustered and nonclustered index - SQL Server and Oracle?

Overview of clustered and nonclustered index - not DB specific (as I understand): Clustered Index: The physical order of data. As a result, a table can only have one clustered index. Nonclustered ...
-1
votes
1answer
91 views

Where can I get a list of all Standard SQL functions? [closed]

Where can I get a list of all Standard SQL functions? I have been asked to produce SQL statements that will work in MySQL, MS SQL Server, and Oracle. They said I should use only Standard SQL to ...
2
votes
7answers
118 views

SQL case giving inconsistent result

I am getting an inconsistent result from below two SQL queries. Query1 : select (case when 'Abc' = null then 1 else 0 end) from dual Query2 : select (case when ('Abc' <> null) then 1 else 0 ...
0
votes
1answer
142 views

Hibernate: same code on different db

I've done my first little "hello world" with hibernate, inserting some data in my SQLServer db. Now I'm trying to switch db without change the annotation on my domain classes, and I'm having problems. ...
1
vote
1answer
48 views

Transition of SQL Server's Login/User concept to Oracle

in SQL Server users are first registered on the server level as Logins, and after that they are added to all necessary databases on that server as Users. Is there something comparable in Oracle? I ...
2
votes
3answers
200 views

How to get next three months in oracle using sysdate

I have an sql server query that return current and next 3 months SELECT CAST(DATENAME(month, getdate() ) as VARCHAR(3)) , CAST(DATENAME(month, dateadd(mm,1,getdate()) ) as ...
0
votes
3answers
155 views

How do I avoid functions like UPPER in where clause

It is recommended that functions in the where clause should not be used. But for the following query, how do I avoid that? SELECT empID from EmployeeTable WHERE UPPER(FirstName) = UPPER(LastName) ...
1
vote
2answers
266 views

LINQ (to Oracle) - Row_Number() Over Partition By

This is a possible duplicate of other Partition By + Rank questions but I found most of those questions/answers to be too specific to their particular business logic. What I'm looking for is a more ...
0
votes
1answer
34 views

Alternative to Oracle Enterprise user security in SQL Server or other databases

Is there an alternative to Oracle Enterprise User Security in SQL Server and other databases ? Thanks.
1
vote
2answers
137 views

T-SQL equivalent of Oracle's collection methods (first, last, next)?

We're moving from Oracle to SQL Server and I'm converting a query from a table variable populated with a BULK COLLECT INTO query. I'm thinking of using a cursor (definitely open to other ...
0
votes
1answer
116 views

Linked Server from x64 sql server to x64 Oracle

I am having a sql server 2005 x64 SP2 server (9.00.5069.00 (X64)) on Windows 2003 server (Service Pack 2) I would like to create a linked server from this server to an Oracle server which is running ...
2
votes
2answers
165 views

Erlang and SQL Injection Attacks [duplicate]

I work with the Oracle and MySQL Databases on a daily basis, from erlang application middle-ware. In these middle-ware applications, i am running Nitrogen Web Framework and Yaws Web Server plus a ...
2
votes
2answers
108 views

SQL why use 'between' instead of '>= and <=' [duplicate]

I'd like to understand any differences in using 'where num between 2 and 4' and 'where num >= 2 and num <= 4', as it applies to Oracle, Sybase-ASE and MSSQL. From purely visual perspective, ...
2
votes
2answers
332 views

How to use Oracle ORDER BY and ROWNUM correctly?

I am having a hard time converting stored procedures from SQL Server to Oracle to have our product compatible with it. I have queries which returns the most recent record of some tables, based on a ...

1 2 3 4 5 17