Viewing 8 posts - 1 through 8 (of 8 total)
Hello Serqiy,
Thanks a lot! That's what I want to ask!
But it still generates the error same as the 'where exists' clause. I might need to sovle the duplication problem inside my...
February 7, 2006 at 7:52 pm
Thanks a lot indeed PW!
It's just so easy under your instruction. It's done! I just left out the index column when I inserted those records.
February 1, 2006 at 7:10 pm
Hello Sushila,
You are really an expert!
I've done the codes according to your hints. The final code is like below:
Update DBCJW.dbo.Client_Tbl
Set Phone_1 =
(Case when (len(Phone_1)>14 and left(right(Phone_1,5),1)='-'
and left(Phone_1,4) in...
January 30, 2006 at 8:40 pm
Hello Sushila,
Thanks a lot for your hints!
My old data column has some phone numbers with one kind of wrong format, and also includes some correct formatted numbers as well.
The wrong format...
January 30, 2006 at 5:11 pm
Hello Ajay_73,
I find the code below worked for the updating column according to columns in another table.
Update TableA
Set TableA.OldEmail =
(Select TableB.NewEmail
from TableB
where TableA.LastName = TableB.LastName and
TableA.FirstName = TableB.FirstName)
Where...
January 30, 2006 at 5:03 pm
Hello David, Paul and Sushila,
The query result pane under the query window in Enterprise Manager doesn't allow me to edit any cell. I can...
January 17, 2006 at 9:09 pm
Hello ajzy_k73,
Thanks a lot! It worked!
I executed it in Query Analyzer, and it also generated new tables!
I found the codes in SQL Server 2000...
January 15, 2006 at 7:56 pm
Hello All,
I am a new user of SQL Enterprise, could anybody tell me where to run a SQL command in Enterprise? (not in the Query Designer)
I want to create a...
January 11, 2006 at 6:17 pm
Viewing 8 posts - 1 through 8 (of 8 total)