Viewing 15 posts - 1 through 15 (of 85 total)
I've been telecommuting two days of each week with every other Friday off so it ends up being 1/2 time telecommuting. The experience has taught me quite a lot...
April 26, 2011 at 8:31 am
Farrell,
Thanks! That seems to be working well.
Steve
July 27, 2006 at 5:44 pm
Farrell,
I should have posted my cleanup code. As you can see I've tried your recommendation previously and still get hosed text.
UPDATE @Main SET
PN=REPLACE(PN, CHAR(44), '') -- comma
FROM @Main
UPDATE @Main...
July 27, 2006 at 12:41 pm
Go into the table design using Enterprise Manager and set it. Otherwise, create a new Access Project (with existing data) and use the Access front-end to do the same thing. ...
March 30, 2006 at 8:02 am
Most likely when you brought the data into SQL Server it was without the primary keys. You MUST have a primary key in SQL Server to edit data. It is...
March 29, 2006 at 4:32 pm
BUT, if you don't use a cursor and use the INSERT and UPDATE commands it will process hundreds of times faster. The T-SQL shown doesn't and processes extremely fast.
March 21, 2006 at 5:01 pm
Why not create your own UPSERT T-SQL stored procedure for your data? It's simply the combination of an update and insert in a single stored procedure.
CREATE PROCEDURE spUpsertWuc
AS
INSERT INTO tblWUC...
March 21, 2006 at 1:03 pm
It is not my intent to be in a mood, Michael, but merely to advise. My comments were about Access and not Office interactivity. You are correct about Office 2000...
January 4, 2006 at 8:28 am
Somewhat less than a million if you consider that Access 2003 projects could use SQL Server 2005 so security it handled by SQL Server; performance then would also be SQL...
January 4, 2006 at 6:34 am
Assuming you have an integer ID (Identity 1,1) use a MOD type operation. If you don't have an ID IDENTITY(1,1) then create a temp table with one and insert your...
December 19, 2005 at 12:33 pm
I always alias all tables in multitable queries. It tends to make the query much clearer and cleaner.
update vv1 set vv1.mtht = vv2.mtht,
vv1.mthtsp = vv2. mthtsp,
vv1.mthtax = vv2.mthtax,
vv1.mttva...
December 1, 2005 at 8:44 am
You haven't mentioned whether you have a key in the TOEROK table and that you have SELECT, UPDATE permissions on the table.
November 17, 2005 at 8:27 am
A parameterized query passes a value into the query. The TSQL you have shown uses a variable embedded in the query; not really a parameterized query. If you want to...
November 16, 2005 at 8:26 am
Yes, it is an Excel file. I deleted it and recreated the Linked Server and modified permissions and am now able to select data from the server.
November 8, 2005 at 9:19 am
Yes I can expand to the tables. The provider string is 'Excel 8.0; IMEX=1' and the product name is 'Jet 4.0'. We have been using this successfully for months before...
November 8, 2005 at 8:39 am
Viewing 15 posts - 1 through 15 (of 85 total)