Forum Replies Created

Viewing 15 posts - 9,541 through 9,555 (of 13,469 total)

  • RE: Error

    b.noof (5/5/2010)


    it's just a variable and not a table

    no it's not. variables do not have row indexs or columns.

    your multiple quotes demonstrate it over and over again:

    v_accounts_info_table(index).account_sequence for example

    v_accounts_info_table(v_account_id).account_sequence...

  • RE: ORA-00933 - SQL command not properly ended

    i think in Oracle, a semicolon is manditory to determine the end of a statement;

    i reformatted your queries and pasted them into SLq Developer, and got the same error.

    when i...

  • RE: lost passwords--any hope?

    the utility i described should work for you;

    i found out the hard way on a new Windows7 laptop; the security is tighter, and it does not automatically add the person...

  • RE: Error

    so you are not going to provide the CREATE TABLE definition of v_accounts_info_table?

    you keep posting variations of the same oracle function over and over instead of providing the information...

  • RE: Error

    I've looked at this at least half a dozen times, and still cannot see what it is doing, because i never see the table definition it is fiddling with.

    this oracle...

  • RE: Users lost

    Henrico Bekker (5/5/2010)


    Because the sql user account needs to be created on sql server level as well, not only db level.

    drop the account from the DB, recreate it on sql...

  • RE: lost passwords--any hope?

    i think you can use the Surface Area Configuration tool to add yourself as an administrator, and then change the passwords of the lost admins, including "sa", right?

  • RE: Which Stored Procedure changed

    Well, my SSMS is actually what gets installed with SQL 2008 standard; it runs the reportagainst any database I point it at;

    your SSMS might not have that feature;

    anyway, i profiled...

  • RE: Quick way to form relationship from several hundred tables to one

    ok the error you can get is:

    “The Maximum number of tables in a query (260) was exceeded”.

    i poked around using my Google-Fu, and that seems to be the limit;...

  • RE: Quick way to form relationship from several hundred tables to one

    i remember a post from Jeff Moden mentioning that a view could only have ~200 references; it was less than 255 but more than 200; so if you have 400...

  • RE: How to select multiple columns from first table while using EXCEPT on two tables

    EXCEPT requires the same number of columns from both tables.

    remember it's comparing row to row based ont he columns you select, so you need to either remove Column 2 from...

  • RE: Disabling implicit permissions

    yet another day where i learned something I didn't know.

    Thansk for this post, Brian. Good to know!

  • RE: Installing SQL 2005 Standard w/SP3 on Windows 7 Ultimate

    yeah it's so easy once you've discovered ti you want to kick yourself... I found out the hard waywhen i bought a new laptop and installed both SQL 2005 and...

  • RE: Error

    the function you pasted is for Oracle, and contains a lot of stuff that is Oracle-only syntax.

    it cannot be directly compiled into SQL Server, you'll have to re-write it.

  • RE: Stored Procedure's Security

    with both .net and SQL server's built in tools, eventually someone can reverse engineer decrypt everything.

    SQL server has to be able to compile any encrypt stored procs/functions ; the WITH...

Viewing 15 posts - 9,541 through 9,555 (of 13,469 total)