Forum Replies Created

Viewing 15 posts - 15,106 through 15,120 (of 15,381 total)

  • RE: Bit Data Type

    Are you using SSMS and selecting edit top 200 rows? That is the only way I can think of where you will see True / False for bit fields. If...

  • RE: T-SQL

    cengland0 (12/16/2010)


    john.arnott (12/16/2010)


    There could be a super-secret release that offers the expression of a day number in base nineteen.;-):hehe::-D:-)

    I did some research on the Mayan calendar and it seems they...

  • RE: Bit Data Type

    Before somebody decides to correct me, it accepts 1 0 and null. 😛

  • RE: Bit Data Type

    Well...it actually only accepts 1's and 0's. I assume you are meaning from a front end of some sort?

  • RE: T-SQL

    Good question. Don't worry about the people who are complaining about the question. There are some people who will complain no matter how clear the question is. Given the history...

  • RE: tracking sp

    Yes they do. It's called SQL Search and it is 100% free. It works really well and runs super fast.

  • RE: Trigger xml message when particular row value changes

    Assuming you would use an update trigger you cannot make it not fire conditionally on which row is updated, but you could add some logic in the trigger do not...

  • RE: Database / Table Permissions

    Happy to help. 😀

  • RE: Database / Table Permissions

    Now you need to go the database you want to allow access to and allow the user to have whatever access you want to the individual db objects. Sounds like...

  • RE: SELECT IF greater than within specified period

    This get you there?

    select RecruiterID , count(distinct Proj.ProjectID) as ProjectCount

    from dbo.tblProjects Proj

    join dbo.tblProfiles Prof on Proj.ProjectID = Prof.ProjectID

    where Proj.Datecreated >= dateadd(mm,-6,getdate())

    group by RecruiterID

    having...

  • RE: Create Delete Stored Proc with dependencies

    I believe they are trying to create a sproc that will delete tableA when there are foreign keys????

    To do this you would have to either update the children table to...

  • RE: filtering result

    I guess what i was saying is that if lat and long are important then you will need to include them like you already are. You will either need to...

  • RE: filtering result

    I guess the question is why is a field like latitude included if the value is not relevant? You either need to leave it in the result with all the...

  • RE: filtering result

    fawwad (12/13/2010)


    No, i just sent you piece of my result set.

    i retrive this from a query...

    select p.id as 'CarID',p.cellnumber as 'Reporting SIM',p.Longitude,p.Latitude,p.statustext as 'Status',

    p.assembled as 'Sent Time',p.received as 'Received...

  • RE: Database / Table Permissions

    You have to set the permissions for the user and allow them access to the database first. Then you can allow/disallow for each database object. Hope that makes sense.

Viewing 15 posts - 15,106 through 15,120 (of 15,381 total)