Forum Replies Created

Viewing 15 posts - 31 through 45 (of 103 total)

  • RE: Images: Store in SQL2000 or on File Directory?

    i too was on the side of storing images into database. But the only reason i had to forgo that option was the response object in asp. I was unable...


    Paras Shah
    Evision Technologies
    Mumbai, India

  • RE: Images: Store in SQL2000 or on File Directory?

    Sorry Steve, but I think you are missing out somewhere. RESPONSE object is ASP can set its contenttype only once. I have not tried it by using the ADO Streams...


    Paras Shah
    Evision Technologies
    Mumbai, India

  • RE: Images: Store in SQL2000 or on File Directory?

    How do you set contenttype for one response object? It can be sent only once. If you are able to do it twice on the same page, pls let me...


    Paras Shah
    Evision Technologies
    Mumbai, India

  • RE: Images: Store in SQL2000 or on File Directory?

    I had avoided storing into DB only for 1 reason. As I cannot show the image and the related text on the same web page. This is because, in ASP...


    Paras Shah
    Evision Technologies
    Mumbai, India

  • RE: Images: Store in SQL2000 or on File Directory?

    I had avoided storing into DB only for 1 reason. As I cannot show the image and the related text on the same web page. This is because, in ASP...


    Paras Shah
    Evision Technologies
    Mumbai, India

  • RE: how to use intersect in sqlserver2000

    Does anyone have a reason why MS has not allowed Intersect, Minus queries even when they are allowed by most common databases. If such queries are allowed then many of...


    Paras Shah
    Evision Technologies
    Mumbai, India

  • RE: Images: Store in SQL2000 or on File Directory?

    Storing images onto file system would be better efficient. You would find managing the files better if stored into database. But are the best person to judge what should be...


    Paras Shah
    Evision Technologies
    Mumbai, India

  • RE: Advantages of SQL 2000 over Sql 7

    1. User Defined Functions

    2. XML Support

    3. New Datatypes

    4. Instead Of and After Triggers

    5. Multiple Instances of RDBMS Engine on same machine

    Many more, this is a few that i remember.

    Paras Shah

    Evision...


    Paras Shah
    Evision Technologies
    Mumbai, India

  • RE: how to piece multiple tables into one table

    This should work. Not too sure as I haven't tried it. But according to my knowledge, temp tables are available till they are droppped.

    quote:


    Paras Shah
    Evision Technologies
    Mumbai, India

  • RE: How to use results of an sp in another sp?

    Isn't there any alternative to OPENROWSET bcoz in OPENROWSET we have to pass username and password as 2 parameters. So when the username/password change on the server we manually need...


    Paras Shah
    Evision Technologies
    Mumbai, India

  • RE: how to give alert to a computer in frontend

    Create a table called Messages and everytime insert records into messages table with the username/userlevel who should be allowed to see that message. Then in your frontend you can create...


    Paras Shah
    Evision Technologies
    Mumbai, India

  • RE: Copying SPs Automatically to New DB

    I want this for the local database. If I use if on the master database, I will have to do so same for the database on the web. The problem...


    Paras Shah
    Evision Technologies
    Mumbai, India

  • RE: case statement in sql server

    well you can use else if you carry out your validations

    if condition1

    BEGIN

    -- do something

    END

    else if condition2

    BEGIN

    -- do something 2

    END

    else if condition3

    BEGIN

    ...


    Paras Shah
    Evision Technologies
    Mumbai, India

  • RE: Copying SPs Automatically to New DB

    Thankx for the help. It works fine. There are some utility stored procedures that I have created which I intend to use it in every database so to be on...


    Paras Shah
    Evision Technologies
    Mumbai, India

  • RE: how to piece multiple tables into one table

    Try this...

    insert into table_bigone(userid, text_con)

    select

    table1.userid,

    table1.text1 + table2.text2 + table3.text3 + table4.text4

    from

    table1, table2, table3, table4

    where

    table1.user_id = table2.user_id and

    table1.user_id = table3.user_id and

    table1.user_id = table4.user_id

    Paras Shah

    Evision...


    Paras Shah
    Evision Technologies
    Mumbai, India

Viewing 15 posts - 31 through 45 (of 103 total)