Viewing 15 posts - 6,181 through 6,195 (of 13,460 total)
i can confirm that SQL2005 express is returning 8 rows, where my 2008 returns 7.
the only difference i see is in the execution plan; the layouts of the plans are...
Lowell
December 20, 2011 at 1:27 pm
oops misread it a little bit...
if you want to know if it was an INSERT, UPDATE or DELETE, you simply check the INSERTED or DELETED tables.
if rows exist in both...
Lowell
December 19, 2011 at 6:52 pm
i'm guessing nwdetcot is a list of all possible prices, possibly for all products thru the begfinning of time..i'm betting you need to limit it to just the CURRENT...
Lowell
December 19, 2011 at 2:29 pm
SQLJocky (12/19/2011)
Lowell
December 19, 2011 at 1:40 pm
oracle has a suite of TO_* functions. TO_DATE and TO_CHAR for example, but i'm thinking this is going to be done on SQl, since you are really pulling the table...
Lowell
December 19, 2011 at 1:07 pm
SYSDATE is the equivilent in oracle;
SELECT SYSDATE FROM DUAL; for example.
Lowell
December 19, 2011 at 12:49 pm
also, make sure you don't have two triggers on the same table, both with the same basic code, but two different names.
that might explain two rows inserted when you expect...
Lowell
December 19, 2011 at 8:55 am
if the datatype is vachar, then it will concatenate instead of addition.
you'll most likely have to explicitly convert to decimal, or money:
select convert(money,'77.41') + convert(money,'4')
if this is a column of...
Lowell
December 19, 2011 at 8:51 am
CoreFTPsupports Sftp and other secure ftp types, and can be scripted and. Called via a command line or Process.Start in. Net.
Ive got it in place for a regular batch process....
Lowell
December 16, 2011 at 10:16 pm
it's not horrible to do, i've thrown some time at it a couple of times, and a simple search can find you someone elses script they already wrote to change...
Lowell
December 16, 2011 at 3:02 pm
i think you want to use the TO_CHAR function on the oracle side...something like this, depending ont he desired format:(what is the timestamp(6) expected value? does it include TIME?)
SELECT TO_CHAR(DATE_VALUE,'YYYYMMDD')...
Lowell
December 16, 2011 at 2:58 pm
statistics auto update when a count of rows equal to 20 percent of a total rows have changed.
on small tables, that s fine, but on large tables, say a million...
Lowell
December 16, 2011 at 2:50 pm
yeah, you have to change the collation of each individual column that is char/nchar/varchar/nvarchar as a seperate suite of steps...man it's a lot of work, especially when some of the...
Lowell
December 16, 2011 at 2:39 pm
if the integer was something like 40891, we could infer that it was 40891 days since the beginning of SQL time, which would, by coincidence, be today (12/16/2011.
without a frame...
Lowell
December 16, 2011 at 2:34 pm
that's normal, because you most likely have a group the user belongs to as a login into the database; it might even be an admin group.
try either ofg these two...
Lowell
December 16, 2011 at 2:00 pm
Viewing 15 posts - 6,181 through 6,195 (of 13,460 total)