Viewing 15 posts - 12,496 through 12,510 (of 13,465 total)
From what I've learned, RAID 5 is slower in comparsion to RAID 1 because the data is distributed redundantly accros the stripes to allow for recovery ,so it can potentially...
August 16, 2007 at 9:33 am
this is a really good source...there's a brief paragraph on the one filegroup per disk and such:
http://www.sql-server-performance.com/articles/per/optimize_filegroup_performance_p2.aspx
August 16, 2007 at 8:03 am
ouch; i had a similar issue where a controller card went bad and was writing bad data for hours before the db was too corrupted to use, but I had...
August 15, 2007 at 2:08 pm
I think the article complete skips over how the other 90% benefit after the 10% paid for the research and development of the software.
Take the Internet for example...it wasn't targeted...
August 15, 2007 at 1:47 pm
here a snippet i saved for looping thru access tables from an application:
Set AccessCN = New ADODB.Connection
AccessCN.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Clients\someAccessDb.mdb;Persist Security Info=False"
AccessCN.Open
Set rs = New ADODB.Recordset
...
August 15, 2007 at 1:37 pm
the way to do it is with the ALTER TABLE ALTER COLUMN command:
example:
create table test (testid int,testcol float);
exec sp_help test;
alter table test alter column testcol decimal;
exec sp_help test;
drop table test;
now...
August 15, 2007 at 12:38 pm
a simple asp web page like this would work; change the connection info toyour page, put it somewhere on the web server and browse to that page:
<!DOCTYPE...
August 15, 2007 at 12:21 pm
I'm betting it has to do with dynamic sql; also "Primary" should be in single, not double quotes, right?
if you add one of the many split function examples here on...
August 15, 2007 at 11:47 am
I'm confused about what you mean when you said "I go to my site, it asks me for a local user account"
Are you sure it's SQL server that is asking...
August 15, 2007 at 11:27 am
thanks for the correction Steve; i never get to play with replication, but I try to read about it here.
August 15, 2007 at 9:27 am
since this is db2 instead of sql, does that mean the idsdemo.FFIITMAP is not databasename.tablename? so the tablename has a period in it? ie [idsdemo.FFIITMAP]
if that's true, then we'd just...
August 15, 2007 at 8:55 am
not enough info to really help yet helen.
the real table definition is much more helpful, as well has the name /definition of the table you are "merging" it with, ie
August 15, 2007 at 8:42 am
I'm going to agree with you...it's common to see bit fields keeping track of attributes, when more properly it should be one-to-many tables.
you could envision that if you had to...
August 15, 2007 at 8:35 am
the full text catalog is not stored in the database, but actually separately on the server i believe.
as a result, you need to deploy the database, and after restoring it...
August 15, 2007 at 8:30 am
wierd...it's ok syntax wise, so I suspect is has to do with teh multi-part-name.
I'd suggest aliasing the table to fix it:
Update idsdemo.FFIITMAP
set idsdemo.FFIITMAP.FFIHGTH = A.CFFIHGTH
From idsdemo.cubiscan A
WHERE ltrim(rtrim(A.CFFIITMN)) =...
August 15, 2007 at 8:26 am
Viewing 15 posts - 12,496 through 12,510 (of 13,465 total)