Forum Replies Created

Viewing 15 posts - 9,631 through 9,645 (of 13,461 total)

  • RE: ROW_NUMBER() - Using it More then Once In A query

    yeah i've used multiples before; i needed both a counter and a partitioning /grouping of the data;

    here's a simple but lame example:

    select

    Row_number()...

  • RE: Triggers to VB.net C# ?

    the most common way is to have a trigger enter a row in a specific table; the your application can scan the table every minute or so for any...

  • RE: comportement on error resume next

    Google Translator (4/21/2010)


    Hello

    I have an application that contains a cursor when I run the query in SSMS there are mistakes but he made the entire cursor (like on error...

  • RE: Updating Trial to standard-license

    I doubt R2 is much different from SQL 2008; there is a maintenance function to change editions in the SQL Server Installation Center for 2008:

  • RE: Error when concatenating with a case statement

    as Lutz posted, both the syntax you used and the error you posted are for Oracle only; SQL server uses the plus + operator to concatenate strings:

    Here is the equivilent...

  • RE: Doubt on PT

    Joy Smith San (4/22/2010)


    So

    SSMS = sqlwb.exe

    SQL server = sqlserver.exe

    Am I right.?

    yes that is exactly correct, Joy; you've got it now.

  • RE: How to check whether a column is autoincrement

    the views from INFORMATION_SCHEMA stuff are missing a lot of info;

    to get theidentity or not,i would either use the ColumnProperty() function, or select from sys.columns instead.

    select * from sys.columns where...

  • RE: Doubt on PT

    SQLWB.EXE = SQL Work Bench, otherwise knows as SQL Server Managment Studio; that's the executable you are using to look at and connect to SQL server, running the sqlserver.exe process.

  • RE: Running SQL Trace

    Grant Fritchey (4/22/2010)


    I had to know for sure, so I just validated it. I started a trace with no stop time, shut down the server, restarted the server, the trace...

  • RE: Informix Linked Server problems

    jameswhitby (4/22/2010)


    Lowell,

    By doing that I get the following error message:

    Msg 7313, Level 16, State 1, Line 1

    An invalid schema or catalog was specified for the provider "Ifxoledbc" for linked server...

  • RE: Informix Linked Server problems

    james it's probably just the dbname.schemaname then;

    you said you were running this commnad:

    select * from LIVE.live_db.informix.thistable

    try

    select * from LIVE...thistable instead; that lets the linked server infer the dbname and...

  • RE: Error when concatenating with a case statement

    when you concatenate, you cannot alias the CASE statement...right at the end of your case you have this:

    end as type||','||

    also you have a logic hole: null concated with anything...

  • RE: Grabing PRINT statements via ADO .Net when no exception is raised?

    yes you can Eric; i did the same thing making a SSMS clone in .NET, for me it was just for fun, but you learn all the pieces you need.

    What...

  • RE: Centrally located stored procs?

    Elliott W (4/21/2010)


    So the PHB strikes again..

    CEWII

    it took me 3 searches for the definition till i found Pointy Haired Boss, which i should have realized right away...

    i have a bunch...

  • RE: Running SQL Trace

    homebrew01 (4/21/2010)


    Maybe I jumped through hoops that I didn't need to ?!

    well, I've never had to restart the default trace or a c2 trace; i could be wrong, but that's...

Viewing 15 posts - 9,631 through 9,645 (of 13,461 total)