Forum Replies Created

Viewing 15 posts - 1 through 15 (of 15 total)

  • RE: Restored database filesize

    Antares686:

    The sizes I mentioned here are the "Size" info on the Properties page of the databases.

    124mb is the total size of the remote server.

    227mb is only the mdf file of...

  • RE: Log file question

    Greg Larsen: Thanks I will try this.

    cstrong: I don't know about growth but what I know is we have limited space allocated and if we were to us more space...

  • RE: Multiple select in a search

    Thanks for the all your help. I've found the solution but I need some dynamic SQL help for it. The code I've found is working itself alone but when I...

  • RE: Multiple select in a search

    quote:


    Not sure what you exactly want.


    What I need is this: The categories will be listed...

  • RE: Default value for int columns

    nickel01:

    yes they're nullable

    bp:

    no i don't have any triggers.

    I found out something today. After changing the datatype of the column to varchar I was still getting 0 value inserted. The stored...

  • RE: Object question

    I just realised that I didn't selected the database from drop down list in query analyzer. The master database was selected by default. duh! 🙂

  • RE: Data disappears from table

    Let me be a little specific..

    A compromised security is not an issue I think; and we can rule out any SUE (Stupid User Error) possibility.

    I am saying that not...

  • RE: Weird select problem

    Sure.

     
    
    if exists(select name from sysobjects where name='proc_AdvertiserSignup' and type='P')
    drop procedure proc_AdvertiserSignup
    go

    create procedure proc_AdvertiserSignup
    @login varchar(100),@password varchar(50),@name varchar(200),@email varchar(200)
    as
    set nocount on

    declare @err_msg varchar(3000)
    set @err_msg=''

    if exists(select ID...
  • RE: Indexes

    Ok bkelley I'll check it out. Maybe it'll do more good for me.

    I just don't get it that Snitz does this working with a more complex sql string than mine...

  • RE: Indexes

    Thanks for the all help.

    The reason I wrote this topic was a search page which gives me a lot of headaches. I was getting a "timeout expired" error. I thought...

  • RE: Indexes

    dm:

    quote:


    3) Without knowing the queries the forum uses, this question is hard to answer. My guess would be the Topic_id...

  • RE: Best way for multiple choices in a search

    Thanks for the code Stuart. But the problem I'm having is the "in (1,3,10)" part. The forum numbers (which forums to search - 1,3,10) will be selected by users using...

  • RE: Best way for multiple choices in a search

    GAL0303 excellent idea. Thanks, I'll do just like you said. Also chrhedga thanks for the IN tip.

    I'd like to ask your opinion about doing this on an already built database....

  • RE: Truncated string error

    Antares686:

    quote:


    Coul also be another column if you pass multiple columns and oyu are looking in the wrong place.


    August 20, 2002 at 4:54 pm

    #434891

  • RE: Dynamic IN

    NPeeters thanks it worked. Bad thing it led to another error (Syntax error converting the varchar value '('1','2','3','4','5','19','6','7','8','9','10','11','12','13','14','15','16','17','18')' to a column of data type smallint.)

    bkelly thanks...

Viewing 15 posts - 1 through 15 (of 15 total)