Viewing 15 posts - 31 through 45 (of 117 total)
Are you sure that's for this thread? I don't understand how what you posted relates to my issue. ?
September 27, 2006 at 3:18 pm
Solved with a tip from forms on sql-server-performance.com
It's a subtle thing:
I have one table to which this insert was adding rows; this table is nothing special -- no indexed views...
September 27, 2006 at 11:14 am
Thanks for that suggestion -- I also found that posting and tried that, but to no avail.
I saw another suggestion indicating that it could be a connection settings issue (two...
September 27, 2006 at 10:38 am
That's the strange part -- this doesn't happen anywhere else, only in this one specific proc and only inserting into this one specific table. We have other inserts in other...
September 27, 2006 at 10:03 am
http://www.databasejournal.com/features/mssql/article.php/3483931 might help you.
But, as you point out, encrypting the data inside the DB is probably a bad idea. Better to keep bad people out, but leave the...
May 26, 2006 at 5:02 pm
Some good news on this issue - file it under "proof in the puddin'?" 🙂
We have built a test server and installed 2005 standard ed. The test server has...
March 30, 2006 at 12:12 pm
mannadba - you are correct, we have a 32 bit system, and I am concerned about the 4gb ceiling, which the 64 bit OS does not have. Thanks for replying,...
March 28, 2006 at 1:16 pm
Also, look at OPENROWSET, which can directly access an Excel worksheet with SQL statements, as if it were a table. No need for the step exporting to XML, no need...
November 22, 2005 at 9:58 am
Worthy of note: you need to keep Excel from messing with numbers and dates and such:
For example, a number with a leading 0, like the US postal code 01033, will...
October 26, 2005 at 11:55 am
Bob - don't think a cursor is needed; I would look at using Update ... From to accomplish this.
September 23, 2005 at 11:15 am
Not a good idea, if you have the drive space, to constantly grow and shrink the database, as it leads to pretty evil os-level file fragmentation. Best practice is to...
September 22, 2005 at 5:35 pm
rgr'us concerns are also valid -- take a look at your overall design, too, and be sure that this idea will really work. What are the odds, for example, that...
September 20, 2005 at 11:59 am
Well, right direction I think. kinda 🙂
First things first. You probably really want to
select address
from persons
where last_nm = @last_nm
and first_nm = @first_nm
And then you want to actually return...
September 20, 2005 at 11:56 am
And how much money you have in the bank 🙂
Check out
http://www.microsoft.com/technet/prodtechnol/sql/2000/reskit/part2/c0361.mspx
September 20, 2005 at 9:59 am
Viewing 15 posts - 31 through 45 (of 117 total)