Viewing 15 posts - 2,881 through 2,895 (of 13,469 total)
ScottPletcher (11/25/2013)
Capture the values at the start time, then recapture them at any subsequent time, subtract the two values, and voila, you have the mods that occurred during...
November 25, 2013 at 1:43 pm
john.chiu (11/25/2013)
November 25, 2013 at 1:22 pm
hoolash (11/25/2013)
I have a JOIN query that selects data from 3 specific tables, using a common field called "ReservationID". The column I am pulling from one of the tables...
November 25, 2013 at 1:02 pm
yes it is on the Oracle side; because of the _TS (_TIMESTAMP?) i think that it's the timestamp datatype issue.
pretty sure you can also resolve this by convertint the value...
November 25, 2013 at 12:32 pm
Aatish Patel (11/25/2013)
When I try to query
SELECT top 10 * FROM...
November 25, 2013 at 11:31 am
fawad.majid (11/25/2013)
not additional column ... there is a column name RPTBO_HTML column in the table, in the result it getting the same data as other database are but...
November 25, 2013 at 11:13 am
fawad.majid (11/25/2013)
I have 69 SQL DB servers and every server have identical tables but on three database when I am querying the table it populating the Application version in...
November 25, 2013 at 10:52 am
yep linked servers, which include openquery , openrowset, and selecting from four part names, are horribly slow;
my rule of thumb is never to use it when fiddling with...
November 25, 2013 at 10:48 am
great job posting the DDL;
in this case, i think using ROW_NUMBER(), and a custom CASE expression to control the special order might work well:
SELECT * FROM
(
SELECT row_number() over(partition by cStudentID,School_Year,CourseID...
November 25, 2013 at 8:57 am
Grace09 (11/25/2013)
November 25, 2013 at 8:51 am
offhand, there's four ways, and i'll list them in order of what i consider ease of use, from easiest to hardest:
1. a pre-built utility to migrate from mySQL to SQL...
November 25, 2013 at 8:14 am
i'd say one server, lots of database, one database per application. that's a typical scenario in the real world, very common.
a whole server instance per company doesn't end up...
November 25, 2013 at 7:25 am
As my friend Koen is pointing out, home work quesitons like this require you to do the research, the reading and the first attempt at the work itself before you...
November 25, 2013 at 6:29 am
also, this is aduplicate post.
no need to cross post to multiple forums it fractures the answers you get and makes posters duplicate others work.
the "Recent Posts" link shows us everything.
continue...
November 22, 2013 at 1:37 pm
my best guess, which sucks and makes no sense woithout the sample DDL of the tables, and the trigger you were trying to build:
CREATE TRIGGER TR_Sales_CloneToDepartment On Sales
FOR INSERT
AS
INSERT INTO...
November 22, 2013 at 11:42 am
Viewing 15 posts - 2,881 through 2,895 (of 13,469 total)