Viewing 15 posts - 31 through 45 (of 89 total)
Do you use Windows Authentication for your connections? If so, make sure the login used by the SQL Server Service has permissions for each connection/server. If you run the package...
May 7, 2007 at 8:28 am
Try this.
DELETE stg
FROM (SELECT Service_Tag, MAX(id) mid FROM ServiceTagReport GROUP BY Service_Tag) a, ServiceTagReport stg
WHERE a.Service_Tag=stg.Service_Tag
AND a.mid<>stg.id
Brian
April 27, 2007 at 12:19 pm
Have you checked to see if there are any scheduled jobs that run during these lockups, both SQL and non-SQL jobs? Do these lockups coincide with anybody's daily routines? Can...
April 27, 2007 at 10:12 am
Are you talking about disk size or row count? sp_spaceused tablename will tell you the size of a table. As far as restricting the disk size, the only thing I...
April 27, 2007 at 10:04 am
If you do it in EM, I believe it actually creates a new table, copies the data to it, drops the original, and then renames the new table and creates...
April 26, 2007 at 7:33 am
TIMESTAMP is just a BINARY(8) value. If you do not need the funtionality of Timestamp in the second database, create the columns as BINARY(8) instead of TIMESTAMP. You can then...
April 25, 2007 at 8:20 am
What happens if you do an update without the join?
UPDATE Services
SET Services.LagCategory = ???
WHERE
April 10, 2007 at 6:49 am
Is LagCategory in any of your indexes? How long does it take to load the data?
April 9, 2007 at 3:32 pm
Are there any triggers on the table you are updating?
April 9, 2007 at 3:26 pm
What happens if you change your options to scroll results as received?
Tools, Options, pick the Results tab and check "Scroll results as received (*)"
Brian
February 27, 2007 at 7:13 am
Why is
create index ix_cover on products (productid, product, cost) include (productdescription)
better than
create index ix_cover on products (productid, cost) include (productdescription, product)
I created a table that had...
February 20, 2007 at 7:46 am
Can the Exchange administrator check out the profile and see if it is actually sending out the email? What happens if you copy the email address from the operator and...
January 29, 2007 at 1:54 pm
From Outlook, can you successfully send an email to the address assigned to the operator? If yes, can you open Outlook with the profile used by SQLMail and send the...
January 29, 2007 at 12:58 pm
AND OeOrders.OrderDateTime>CONVERT(DATETIME,CONVERT(VARCHAR(10),GETDATE(),120))
This conversion will remove the time from the current date.
Brian
December 22, 2006 at 1:26 pm
The last record will be inserted because the temp table is empty at the time the query is executed. If you execute each statement individually by left joining it to...
September 8, 2006 at 12:33 pm
Viewing 15 posts - 31 through 45 (of 89 total)