Viewing 15 posts - 151 through 165 (of 322 total)
Al has a good idea. As a teen, before cell phones and when dinosaurs roamed N. America, I lived in rural Illinois. I had a VHF ham radio setup so...
April 27, 2007 at 12:10 pm
If you can finagle all the transformations into a single transaction, you can do this:
SET TRANSACTION ISOLATION LEVEL SERIALIZABLE;
BEGIN TRANSACTION
-- do your transformations here
...
COMMIT TRANSACTION
There are some good articles on this site...
April 5, 2007 at 4:56 pm
From BOL:
The computer running SQL Server must be set up as an e-mail client. SQL Server Enterprise Manager is used to assign an e-mail account and password to the SQL...
April 5, 2007 at 4:51 pm
OK, that was weird. Let's try it again.
You can create an INSERT trigger on the table into which you insert the CSV data from your network logon. Something along the...
April 5, 2007 at 4:21 pm
You can create an INSERT trigger on the table into which you insert the CSV data from your network logon. Something along the lines of
CREATE TRIGGER AfterInsertLogonCSV ON LogonCSVAFTER...
April 5, 2007 at 4:17 pm
Joel, schleep is correct. You could, however, use a base table or a local temp table.
April 5, 2007 at 9:54 am
"Typically, you know when tempdb is being hammered when you are in enterprise manager and you refresh the view on tempdb. In our environment, if tempdb is being hammered, we...
March 30, 2007 at 2:58 pm
OP, did you get it going? By now, you probably could have typed it into EM.
March 23, 2007 at 10:08 am
Do you actually have a rectangle in the spreadsheet? There are the same number of columns in every row?
March 22, 2007 at 5:46 pm
<long shot>
What if you open the spreadsheet, format the SSN field as general, and then try to import it into a varchar(9)?
</long shot>
March 22, 2007 at 1:56 pm
Have you defined the table explicitly, or are you letting DTS do that for you? If not, you might want to
CREATE TABLE dbo.NameSsn (EmployeeName varchar(50), EmployeeSsn varchar(9))
then in your...
March 22, 2007 at 1:23 pm
Or, option B, what if I add a file to tempdb on my D: drive (which has 136GB free)? If I don't let tempdb autogrow, but instead set the primary file to 146GB and...
March 21, 2007 at 3:00 pm
Viewing 15 posts - 151 through 165 (of 322 total)