Forum Replies Created

Viewing 15 posts - 15,901 through 15,915 (of 18,926 total)

  • RE: weird problem

    I wouldn't call that luck .

  • RE: Seen This?

    And you're the one asking others to stop doing that???

  • RE: Find Who is NOT granted

    I either don't understand your design or there's a missing link.

    You need all 3 tables for this, the temp table is useless in this case to get that info (unless...

  • RE: Receiving an syntax error

    Make sure you retest the insert statement to be certain that there's no syntax error. It's much easier to correct them on your end.

    I'll worry about the identity inserts...

  • RE: Receiving an syntax error

    Something like this :

    Create table demo

    (

    a varchar(10) not null,

    b int not null

    )

    insert into demo (a, b) values ('test', 0)

    insert into demo (a, b) values ('asdf', 3)

    insert into demo (a,...

  • RE: weird problem

    Yup but it doesn't say what cause this problem to pop up in the first place (I know about the object_id... but what caused that problem).

  • RE: Re: comparing dates

    Or actually using the correct datatype for the column in the first place and avoiding this problem altogether.

  • RE: cast / convert NVARCHAR into INT

    How about it's thursday morning here?? and I'm not working tomorrow anyways .

    This is the kind of mistake you must aboid at...

  • RE: Find Who is NOT granted

    Maybe you should have used more xml to solve this problem .

  • RE: date format

    Was the user David or something like that??

    Be carefull to always specify the owner of the object or else you'll suffer terrible consequences in procution code (not just a threat).

  • RE: Receiving an syntax error

    And the insert statements??

    we must use the same data as you have to recreate the problem.

    insert statements please. I'm not typing all type by hand.

  • RE: ReCall (for Remi Gregoire and anyone want to help...) Impossible to Insert or Update with identity in table

    There can never have too many details in a question .

  • RE: cast / convert NVARCHAR into INT

    how about else null end???

    So that the columns with the real value of 0 doesn't get mixed up with corrupt data?

  • RE: date format

    Run this to get the answer :

    Select user_name(uid) as OwnerName from dbo.SysObjects where name = 'CallLogRevenuesTEST ' and XType = 'U'

    then replace dbo. with the results of the query.

    If...

  • RE: Find Who is NOT granted

    You're missing a table in this design, should be :

    Users

    Documents

    PermissionsUsersDocuments

    It takes all three of these tables to create this query.

Viewing 15 posts - 15,901 through 15,915 (of 18,926 total)