Viewing 15 posts - 991 through 1,005 (of 3,348 total)
Looks a lot better this way!
Final remarks:
* Try to avoid using [brackets] where they are not needed. In your case, the brackets around [dbo], [Users], and [TR_Aud_Update_Datetime_Update_User] are not needed....
January 30, 2016 at 8:52 am
Ed Wagner (1/30/2016)
I enjoy helping people, but honestly, what do they they expect from a free help forum?
The problem is, as long as there is as much as a single...
January 30, 2016 at 7:04 am
Sure, if you post your current version of the script I'll help you make the changes.
January 30, 2016 at 6:50 am
GilaMonster (1/30/2016)
January 30, 2016 at 4:15 am
Though you have your answer, I'd like to add that in many cases it is not needed to nest CASE expression. For instance, this should work for you as well:
CASE...
January 30, 2016 at 4:03 am
kudz (1/29/2016)
There is no swap order possible as the first session it's just a select statement and sql choses the order it access the tables right ?
I think you missed...
January 30, 2016 at 4:00 am
Kevin apologizes for sounding harsh ...
I am going to sound much harsher, and I am not even going to apologize for it.
ffarouqi (1/29/2016)
January 30, 2016 at 3:56 am
If the column User_ID is constrained to be unique and not nullable, then the trigger should work. You should still test, of course.
There are some modifications I would make if...
January 30, 2016 at 3:43 am
How will you determine which value goes into which column?
What will you do when there are more values for a column?
Really, this appears to be a formatting request, and formatting...
January 29, 2016 at 12:36 pm
Oops. Checked and double checked the dates multiple times and still overlooked the difference.
My bad.
January 29, 2016 at 12:30 pm
Not sure why you would want to avoid row versioning.
Anyway, the other standard techniques for avoiding deadlocks are:
1. If you know or expect that a row you read might get...
January 29, 2016 at 12:27 pm
SQL Server will execute the function to verify your check constraint *after* inserting the row.
Assuming that your row has sdate < edate, that row itsself will trigger the condition for...
January 29, 2016 at 12:18 pm
Luis Cazares (1/29/2016)
SELECT Id,
Amount,
CashFlowDate
FROM #Test
CROSS APPLY( VALUES(Principal, 'Principal'), (Interest, 'Interest')) x(Amount,AmtType)
WHERE...
January 29, 2016 at 12:11 pm
I actually recommend that you *should* open SSMS and query the database correctly. Last time I looked, most queries fired from Access involved transporting all data over the network and...
January 29, 2016 at 4:34 am
Shabbaranks (1/29/2016)
Thanks for your reply, Im not a complete newbie as I have an Access background and so I do understand joins and relationships. What I struggle with is working...
January 29, 2016 at 2:59 am
Viewing 15 posts - 991 through 1,005 (of 3,348 total)