0
votes
1answer
38 views

Updating the code through executes

I'm a beginner programmer and I'm trying to learn SQL and I've run into an issue here the question I was given is: Write a procedure UpdateSuggestedPrice that accepts an ISBN number and a new ...
1
vote
2answers
236 views

Update statement based on select SQL server

I have select which is works perfectly. update ClientS set StatusID=4 where ClientID= (select P.ClientID ,LastName+' '+FirstName as Name ,Address ,max(p.PickupDate)as 'Last Pickup' ...
0
votes
1answer
106 views

Updating Tables In SQL Server 2005 Using Access 2010

Very new to the world of advanced access and SQL Server 2005. I have now developed all my tables in SQL Server and added them to my blank database now in access using a ODBC connection. This topic is ...
2
votes
2answers
2k views

T-SQL Insert Trigger to insert,update on if condition on multiple tables

I'm having a few issues trying to resolve an SQL Trigger to automatically set a user to blocked & create the block record including date in another table, if their Due date is equal to a set date. ...
0
votes
1answer
672 views

C# How can i update some column datetime in datagridview to database

i need update some column in datagridview to database. but don't update to database. step one: i select datetime from datetimepicker. step two: show datetime on datagridview. step tree: i need ...
0
votes
3answers
294 views

How to insert multi language data in SQL Server using N?

I know by using N'...' we can insert multi language data into SQL Server. But I don't know how to use it with parameters. Please help me.. My code is : Alter proc proc_T_NewsAddUpdate ( @Id ...
0
votes
2answers
174 views

how to update table1 with records from table2 using t-sql

I have two tables: Table1: RulesVectorID(nullable, primary),Weight,IsDeleted Table2: RulesVectorID(forigen) , Weight,IsDeleted, NumberOfOffers, other fields... I want to do tow things: assign ...
1
vote
1answer
257 views

SQL - updating records and keeping an audit trail of the changes

I have a table in which 2 columns are to be updated based on the existence of records in several other tables. Also, need to use temporary table for this purpose. And, finally am required to keep an ...
1
vote
3answers
472 views

SQL Constraint IGNORE_DUP_KEY on Update

I have a Constraint on a table with IGNORE_DUP_KEY. This allows bulk inserts to partially work where some records are dupes and some are not (only inserting the non-dupes). However, it does not ...
3
votes
2answers
2k views

SQL Server - join or subquery in update statements?

Is there a reason to use one of these UPDATE statements over the other with regards to performance? UPDATE myTable SET fieldx = 1 FROM myTable AS mt , myView AS mv WHERE mt.id = mv.id ...
0
votes
2answers
308 views

SQL update to record with nearest data

In SQL server 2008: Suppose I have two tables. Table1 has 3 fields: Name, Date1 and Date2. Currently, all the Date2 entries are NULL. (Name, Date1) form a unique key. Table2 has 2 fields: Name and ...