Forum Replies Created

Viewing 15 posts - 676 through 690 (of 761 total)

  • RE: please give the solution for this

    Where do you get the backup from??...Directly from the database or you download/FTP the backup file from somewhere?....Have you tried restoring it as a fresh database?

    I think it might be...

    Vinu Vijayan

    For better and faster solutions please check..."How to post data/code on a forum to get the best help" - Jeff Moden[/url] 😉

  • RE: Help in Getting Closing Balance from Opening balance

    very nice one Lynn.

    Couldn't have done it better.

    Vinu Vijayan

    For better and faster solutions please check..."How to post data/code on a forum to get the best help" - Jeff Moden[/url] 😉

  • RE: Compare two tables and return result

    Medal of SQL HONOUR...must be given to all people who are behind this forum...CHEERS!! guyz

    Vinu Vijayan

    For better and faster solutions please check..."How to post data/code on a forum to get the best help" - Jeff Moden[/url] 😉

  • RE: sql discusion

    This works too.

    --Create Table1

    Create Table Ex

    (billno int,

    amount int )

    --Insert Data into Table1

    Insert Into Ex

    Select 1 ,15000

    Union All

    Select 2 ,25000

    Union All

    Select 3 ,35000

    --Create Table2

    Create Table Ex1

    (billno int,

    amount int )

    --Insert...

    Vinu Vijayan

    For better and faster solutions please check..."How to post data/code on a forum to get the best help" - Jeff Moden[/url] 😉

  • RE: Messages Tab (Query)

    I am guessing, you must want to do that dynamically everytime a query is run....right??

    Vinu Vijayan

    For better and faster solutions please check..."How to post data/code on a forum to get the best help" - Jeff Moden[/url] 😉

  • RE: Procedure

    This is the best I could do with the vague question you posted:

    Create Procedure Give_More_Details

    @Table1 varchar(10),

    @Table2 varchar(10),

    @Col1 varchar(10),

    @Col2 varchar(10),

    @Data1 varchar(max),

    @Data2 varchar(max)

    As

    Declare

    @query1 varchar(max),

    @query2 varchar(max)

    Begin

    Set @query1 = 'Insert Into '+@Table1+'('+@Col1+') Values('''+@Data1+''');'

    Set @query2...

    Vinu Vijayan

    For better and faster solutions please check..."How to post data/code on a forum to get the best help" - Jeff Moden[/url] 😉

  • RE: How to create multiple users using a procedure with a loop

    By executing the procedure do you mean executing the above code you showed us(creating the procedure) or do you mean running the procedure?

    PLS-00306: wrong number or types of arguments in...

    Vinu Vijayan

    For better and faster solutions please check..."How to post data/code on a forum to get the best help" - Jeff Moden[/url] 😉

  • RE: index basic

    You'll get whatever you need to know about Indexing at the following link:

    Stairway to SQL Server Indexes[/url]

    Vinu Vijayan

    For better and faster solutions please check..."How to post data/code on a forum to get the best help" - Jeff Moden[/url] 😉

  • RE: Messages Tab (Query)

    If you use the following code:

    SET STATISTICS TIME ON

    select *

    from [a view]

    SET STATISTICS TIME OFF

    then it shows the Time Statistics in the message tab....so what is the problem here??...aren't you...

    Vinu Vijayan

    For better and faster solutions please check..."How to post data/code on a forum to get the best help" - Jeff Moden[/url] 😉

  • RE: An Integration Services class cannot be found - How to resolve

    You're welcome.

    Always happy to help.:-)

    Vinu Vijayan

    For better and faster solutions please check..."How to post data/code on a forum to get the best help" - Jeff Moden[/url] 😉

  • RE: Blockings

    SQLCrazyCertified (4/17/2012)


    vinu512 (4/17/2012)


    What do you mean by BLOCKING?

    According to Microsoft the following is BLOCKING:

    Blocking

    Is that what you mean??...

    Anyways you can get the Database back to that state if you have...

    Vinu Vijayan

    For better and faster solutions please check..."How to post data/code on a forum to get the best help" - Jeff Moden[/url] 😉

  • RE: Failsafe way of converting floats to chars?

    Have you tried it like this??

    I'm using SQL Server 2008.

    declare @table table

    (col1 decimal(18,2) )

    insert into @table (col1)

    values (1),

    (10),

    ...

    Vinu Vijayan

    For better and faster solutions please check..."How to post data/code on a forum to get the best help" - Jeff Moden[/url] 😉

  • RE: Complicated query

    thats really sweet of you jennyaalt. But I think ColdCoffee was the one who gave the solution.

    You're welcome anyways 😀

    Vinu Vijayan

    For better and faster solutions please check..."How to post data/code on a forum to get the best help" - Jeff Moden[/url] 😉

  • RE: An Integration Services class cannot be found - How to resolve

    rvasanth (4/16/2012)


    Yes we have installed the SSIS component indenpendely on the server.

    Note : Same thing works fine if my web server os is 32 bit (Eg : Windows 2003 32...

    Vinu Vijayan

    For better and faster solutions please check..."How to post data/code on a forum to get the best help" - Jeff Moden[/url] 😉

  • RE: An Integration Services class cannot be found - How to resolve

    I believe this would help you.

    64-bit Considerations for Integration Services

    Vinu Vijayan

    For better and faster solutions please check..."How to post data/code on a forum to get the best help" - Jeff Moden[/url] 😉

Viewing 15 posts - 676 through 690 (of 761 total)