Viewing 15 posts - 2,371 through 2,385 (of 5,103 total)
And to make that clear...
you can update a view as long as you update one table at a time even though you can have more than one table included in...
April 4, 2006 at 11:51 am
Try:
DBCC rebuild_log('<database name>','')
If the rebuilt action is good you need to run DBCC CHECKDB afterwards and possibly take your data out of that DB!! (DTS or bcp come in...
April 4, 2006 at 11:46 am
First you haven't said what is supposed to happen when some of the rows are accepted and some of the rows are not.
Second. From your code the raise error does...
March 29, 2006 at 11:52 am
This is a presentation issue and the best way to hadle it is at client side. If this calculation is to move data into anther table then you do need...
March 29, 2006 at 11:47 am
The sort order is used on insertion only to determine existence! All values are not read because the index data is saved in BTree format. If you had no index...
March 27, 2006 at 12:57 pm
That simply implies that the index does not exists for that ID or that it si not a 'real' index.
Where did you get that ID from ?
March 27, 2006 at 12:26 pm
>>If I'm not making a lot of changes to the portal/database, why would the max for my log file keep increasing?<<
I suspect some index rebuild is happening (probably after hours). If...
March 27, 2006 at 12:12 pm
create table t1 (coltxt text)
go
-- put some data in it
insert into t1 ( coltxt ) values ('some test data')
go
-- add unicode column
alter table add colUnicode ntext
go
-- transfer values
update t1 set...
March 27, 2006 at 11:48 am
Constraints in MS SQL Server are enforced by using indexes. With Sort order you tell SQL how do you want the index created. Unfortunately I see no reason other than...
March 27, 2006 at 10:52 am
..If you're dealing in "x = y" type WHERE clauses though, simply encrypt y to match x and voila.
NOPE! that is not the case. If you run that, you will...
March 20, 2006 at 3:52 pm
Well at least for every american you have two things for certain:
Death and taxes ![]()
Cheers,
March 20, 2006 at 2:58 pm
Select Max(Id) Id, Custnbr, Email
into #t1
from Yourtable
group by Custnbr, Email
having count(*) > 1
delete D
from YourTable D join #t1 t
on D.Custnbr =t.Custnbr and D.Email = t.Email and t.ID <> D.ID
--...
March 20, 2006 at 2:44 pm
There are other weak points on the encryption architecture.
1. If your company ( like mine
) has a service password change policy the...
March 20, 2006 at 2:22 pm
As long as you have the rights to do it in a remote server, you should be OK. This server should only be a Development Server though!!
March 17, 2006 at 11:28 am
Viewing 15 posts - 2,371 through 2,385 (of 5,103 total)