Forum Replies Created

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

  • 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.

  • RE: Receiving an syntax error

    just paste something like that for each table.

    create table #granted(grantedid int,grantedname varchar(30) )

    insert into #granted(grantedid,grantedname) values (1,'Lowell')

    insert into #granted(grantedid,grantedname) values (2,'Remi')

    insert into #granted(grantedid,grantedname) values (3,'Frank')

    insert into #granted(grantedid,grantedname) values (4,'Noel')

    then repost...

  • RE: date format

    The tablename is wrong or you didn't specify the right owner (try changing to your user name if the table name is correct).

  • RE: weird problem

    What causes that problem to come up in the first place?

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