Viewing 15 posts - 15,106 through 15,120 (of 15,381 total)
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...
December 16, 2010 at 2:02 pm
Before somebody decides to correct me, it accepts 1 0 and null. 😛
December 16, 2010 at 9:13 am
Well...it actually only accepts 1's and 0's. I assume you are meaning from a front end of some sort?
December 16, 2010 at 9:09 am
Yes they do. It's called SQL Search and it is 100% free. It works really well and runs super fast.
December 13, 2010 at 2:57 pm
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...
December 13, 2010 at 2:49 pm
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...
December 13, 2010 at 10:35 am
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...
December 13, 2010 at 10:12 am
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...
December 13, 2010 at 9:59 am
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...
December 13, 2010 at 9:56 am
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...
December 13, 2010 at 9:44 am
fawwad (12/13/2010)
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...
December 13, 2010 at 9:28 am
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.
December 13, 2010 at 9:26 am
Viewing 15 posts - 15,106 through 15,120 (of 15,381 total)