comp.databases.sybase
  Home FAQ Contact Sign in
comp.databases.sybase only
 
Advanced search
August 2008
motuwethfrsasuw
    123 31
45678910 32
11121314151617 33
18192021222324 34
25262728293031 35
2008
 Jan   Feb   Mar   Apr 
 May   Jun   Jul   Aug 
 Sep   Oct   Nov   Dec 
2008 2007 2006  
total
comp.databases.sybase Profile…
RELATED GROUPS

POPULAR GROUPS

more...

 Up
  Re: selecting rows by DATETIME without providing the time?         


Author: ThanksButNo
Date: Aug 29, 2008 00:22

On Aug 28, 11:37 am, yawnmoth yahoo.com> wrote:
> Say I'm looking for all rows with a timestamp field from "Jun 4
> 2008". Since the timestamp field also contains a time (in this case,
> 8:08AM), the following doesn't work:
>
> SELECT *
> FROM comments
> WHERE timestamp - '2008-06-04'
>
> The following, however, does work:
>
> SELECT *
> FROM comments
> WHERE timestamp > '2008-06-04 0:0:0.000' AND timestamp < '2008-06-05
> 0:0:0.000'
>
> My question is... if I want to find all entries that take place on a
> select day, do I always have to specify a date range or is there a way
> to make Sybase figure out that I'm not interested in anything above
> and beyond what I put into the query matching? ...
Show full article (0.79Kb)
1 Comment
  Re: selecting rows by DATETIME without providing the time?         


Author: PDreyer
Date: Aug 28, 2008 23:25

On Aug 28, 8:37 pm, yawnmoth yahoo.com> wrote:
> Say I'm looking for all rows with a timestamp field from "Jun  4
> 2008".  Since the timestamp field also contains a time (in this case,
> 8:08AM), the following doesn't work:
>
> SELECT *
> FROM comments
> WHERE timestamp - '2008-06-04'
>
> The following, however, does work:
>
> SELECT *
> FROM comments
> WHERE timestamp > '2008-06-04 0:0:0.000' AND timestamp < '2008-06-05
> 0:0:0.000'
>
> My question is...  if I want to find all entries that take place on a
> select day, do I always have to specify a date range or is there a way
> to make Sybase figure out that I'm not interested in anything above
> and beyond what I put into the query matching? ...
Show full article (0.92Kb)
no comments
  How to print constraints.         


Author: Serguei.Goumeniouk
Date: Aug 22, 2008 13:19

Dear Experts,
Is it possible (and how is it) to print all constraints on a given
table?
Regards,
Serguei.
1 Comment
  Using ON EXISTING UPDATE on ASE         


Author: Tony Woo
Date: Aug 22, 2008 09:49

Hi,
I'm new on useing ASE 15 and I would like to use the statement similar
to MySQL's REPLACE statement.
I have surfed the web and found the article "MySQL to Sybase ASE
Migrtion Guide", it said INSERT....ON EXISTING UPDATE as equivalent to
MySQL's REPLACE. However, I got the syntax error when I input something like
INSERT INTO table(key, field12) ON EXISTING UPDATE VALUES(1,2).
am I using the statement in the wrong way? Is there any alternative
way for MySQL's REPLACE?

Thanks.
1 Comment
  grant in a stored proc         


Author: Larry.Martell
Date: Aug 22, 2008 08:54

I have a stored proc that create a table, renames it, then does a
grant on it. It runs without errors, but the table does not get the
permissions granted. Here is a small test that shows what I am talking
about:
Show full article (0.78Kb)
2 Comments
  Project Management Knowledge Base !         


Author: spyder
Date: Aug 20, 2008 04:49

Project management resources: templates, samples, articles, software,
lecture notes on software & general PM. Project Management Topics to
Beginners and Experts.Learn useful project management techniques with
these free skill-building articles.

http://one.xthost.info/pmanagement
no comments
  Looking for APT code for AIX         


Author: Thomas
Date: Aug 20, 2008 01:45

Hello,

I know it's very old and totally unsupported now, but I'm looking for APT
for AIX to do some tests with a customer, anyone knows where I could find
this?

Thanks.
no comments
  Monitoring tools for locks and processed SQL queries?         


Author: ola.theander
Date: Aug 19, 2008 05:33

Hello everybody

I’m trying to solve a performance problem in an application that’s
using ASE 12.5 as the database engine. I suspect that it’s due to
locking of tables for certain queries that puts other concurrent
queries on queue and if these queries takes some time the other
clients will stall.

Therefore I would like to know if there is a tool that allows me to
monitor, preferable in near real-time, locks on tables including lock
type and if possible also processed SQL queries.

Any help on this issue would be most appreciated.

Regards, Ola
no comments
  Sybase Dives Into Partnership With Business Intelligence Developer, Yellowfin         


Author: Yellowfin Team
Date: Aug 15, 2008 22:36

New alliance will market Australian-developed BI solution to wider
corporate community

Sybase Australia, a leading provider of enterprise infrastructure and
mobile software, today announced details of its Australian and New
Zealand technology partnership with Australian Business Intelligence
software company, Yellowfin.

Sybase has entered into a sales alliance with Yellowfin to co-sell its
market leading column-based database, Sybase® IQ, with Yellowfin
providing the front-end BI presentation layer and easy-to-use
interface.

Sybase IQ is a highly optimised analytics server designed specifically
to deliver faster results for mission-critical business intelligence,
data warehouse and reporting solutions on any standard hardware and
operating systems. Its column-based architecture works with diverse
data – including unstructured data – and diverse data sources to
deliver unsurpassed query performance at the lowest price available.
Show full article (4.88Kb)
no comments
  optimizing sybase sql queries?         


Author: yawnmoth
Date: Aug 8, 2008 10:40

In MySQL, if you want to see what the bottle neck of an SQL query is,
you can prepend the query with EXPLAIN.

Does Sybase offer similar functionality?
4 Comments
1 2 3 4 5 6 7 8 9