Forum Replies Created

Viewing 15 posts - 226 through 240 (of 549 total)

  • RE: SYSXLOGINS --- In 2005

    Kenneth, do you happen to know what it's called in 2005? Thanks.

  • RE: Joining the darkside

    mark lake (3/19/2008)


    I've recently (about 5 minutes ago) accepted a job as an Oracle DBA, Don't suppose anyone knows of any Oracley type websites that are as good as...

  • RE: Oracle DB backup

    I know SYS and SYSTEM are like sa.

    Your crytpic response is creating suspense that's awesome.

    Can you be just a bit more detailed in your explanations?

  • RE: convert different rows ( dynamic no.of rows ) into different columns

    vbandlamudi,

    How many times are you going to post this problem?

    What you are doing is bad forum etiquette!

    In addition, your problem is incomprehensible.

    Maybe with some additional and more varied sample data...

  • RE: Oracle DB backup

    PaulB (8/27/2008)


    Michael Meierruth (8/26/2008)


    EXP SYSTEM/SYSTEM@ORCL FILE=c:\wherever\my.dmp LOG=%temp%\exp.log GRANTS=N OWNER=THEOWNER

    IMP SYSTEM/SYSTEM@ORCL FILE=C:\wherever\my.dmp LOG=%temp%\imp.log ANALYZE=N IGNORE=Y GRANTS=N FROMUSER=THEUSER1 TOUSER=THEUSER2

    1- This doesn't work; you are importing nothing in your example.

    2- You do not...

  • RE: Disappearing Service Manager Icon

    I recently had to add generation of a tray icon to a program. It's essentially done via a Windows API called Shell_NotifyIcon to which you pass a structure which includes...

  • RE: failed login auditing

    roger.hurst (8/21/2008)


    This is a quickie for somebody, I'm sure:

    How is "failed login auditing" turned on in SQL Server via some procedural method. I need to set it in a...

  • RE: numeric sort of a varchar field

    Peso (8/26/2008)


    Add this sample data

    UNION ALL

    SELECT '$1500,0'

    and run your query again...

    How about adding a plate of spaghetti and some sushi.:D

  • RE: SQL Programming

    Peso (8/26/2008)


    On large tables, there might be a performance issue due to the "triangular join" in the correlated subquery.

    It's not one giant triangle but rather many little ones (for each...

  • RE: Comparing ss and ß using LIKE

    Kirill Müller (6/21/2007)


    In the Latin1_General collation, ss is treated like ß (German sharp s) in comparisons:

    Apart from your specific problems regarding the LIKE operator, I'm very surprised that ss is...

  • RE: SQL Programming

    I guess the trick is to generate a view which shows the start date and end date of each employee's stay in a department.

    Data:

    create table empdep(

    empid int,

    ...

  • RE: Oracle DB backup

    Well, to get back to the OP's original request for sybtax (where I think he meant syntax), here are some simple examples for a Windows based system. Each line is...

  • RE: numeric sort of a varchar field

    Could this be what the OP meant?

    It's definitely something I have never encountered in the real world.

    create table t(c nvarchar(10))

    insert into t values('001')

    insert into t values('12')

    insert into t values('112')

    insert into...

  • RE: creating calculation scripts

    Ahh, that feels better.

    But is this truly set based?

    Or is this just a SS2000 hack?

    I wonder if SS2005 has something to deal with this directly in a select.

  • RE: Generate random number

    Chandru,

    This kind of problem has been discussed many times on this forum. You should search for 'generating sequence numbers' or similar terms.

    You will need to evaluate the type of solution...

Viewing 15 posts - 226 through 240 (of 549 total)