Viewing 15 posts - 46 through 60 (of 73 total)
bitbucket-25253 (2/28/2010)
I'm creating triggers that create/update a record in a history table as records are added to a master table. If a new record is added to the master, a...
February 28, 2010 at 5:36 pm
...like misspelling a column name only to discover the mistake too deep into development to change it?
February 22, 2010 at 4:35 pm
...and then I switched databases from 'master' to the correct database. Imagine how that fixes things.
February 22, 2010 at 5:00 am
I fixed the brackets, but its still a no-go. I even copied the altered code as-is.
February 22, 2010 at 4:59 am
Something else to blame the recession on. The project was ready to start its shakedown and then yanked with a cease & decease email. Its now being revisited on a...
February 18, 2010 at 2:09 pm
Luke L (10/13/2009)
October 13, 2009 at 1:49 pm
I'll have to play with that. Pretty much as I get something up and running, I'm moving on to the next issue and then later going back to refine.
October 13, 2009 at 12:31 pm
Bob Hovious 24601 (10/12/2009)
declare @sampleSource table (rowid int identity(1,1),priority int) -- this would be your temp table
declare...
October 12, 2009 at 5:53 pm
Bob Hovious 24601 (10/12/2009)
The effectively places the records in the temp table in order of priority. This was necessary since an UPDATE statement cannot specify the order in which records...
October 12, 2009 at 12:53 pm
The original post seems confusing. Are you viewing the data in an Access front end or are you viewing it via an a ASP.NET page? The relationship between Access, ASP.NET...
October 8, 2009 at 6:06 pm
eko indriyawan (10/7/2009)
October 8, 2009 at 12:54 pm
If it hasn't been mentioned, try posting in this newsgroup...
Based on your original post, it sounds like you want to prevent a user from directly access SQLServer objects...
October 8, 2009 at 12:44 pm
Jeff Moden (10/7/2009)
david.c.holley (10/7/2009)
I just answered my own question...
Alter table contactuserids
Add constraint ix_WindowsUserId UNIQUE(WindowsUserID)
Alter table contactuserids
Add constraint ix_ContactId Unique(ContactId)
I just didn't know what the term was.
Keep in mind that UNIQUE...
October 7, 2009 at 8:02 pm
I just answered my own question...
Alter table contactuserids
Add constraint ix_WindowsUserId UNIQUE(WindowsUserID)
Alter table contactuserids
Add constraint ix_ContactId Unique(ContactId)
I just didn't know what the term was.
October 7, 2009 at 5:49 pm
I had already planned on shifting everything to stored procedures so it sounds like I'm on the right track. Even though its for an intranet, the idea is not to...
September 14, 2009 at 12:20 pm
Viewing 15 posts - 46 through 60 (of 73 total)