Viewing 15 posts - 24,451 through 24,465 (of 26,490 total)
Right click on the table in the Object Explorer Pane, select Open Table.
😎
July 21, 2008 at 3:26 pm
Hard to tell from the question alone. Michael Earl is right, we need to know more from the OP before we can really answer the question.
😎
July 21, 2008 at 12:14 pm
Here is what I found in BOL.
G. Moving tempdb to a new location
The following example moves tempdb from its current location on the disk to another disk location. Because tempdb...
July 21, 2008 at 12:11 pm
The easiest system database to move is tempdb. If memory serves me, there is actually an example in BOL on how to move tempdb. It does require a...
July 21, 2008 at 12:06 pm
I had a little time here at work and started looking at your code a bit. Something I noticed was the use of 3 part naming conventions in your...
July 11, 2008 at 2:58 pm
I only gave you the query, you'll need to put it into your proc.
ALTER PROCEDURE [dbo].[spTEST]
(
@LineNum VARCHAR(10) = NULL,
...
July 11, 2008 at 11:14 am
charles.frank (7/11/2008)
July 11, 2008 at 10:36 am
mailsar (7/11/2008)
I have a Question,
Is 1 better or 2 better(Join).
1.
FROM Product, ProductType
WHERE ProductType.ProductTypeID = @ProductTypeID AND
...
July 11, 2008 at 10:17 am
CTE's alone won't eliminate your cursors. You have to totally relook at the process from set based view instead of a row by row view as is done with...
July 11, 2008 at 10:10 am
rbarryyoung (7/11/2008)
Missing: sample data for the tables (in the form of INSERT statements that can be cut, paste, and run in SSMS to load the tables).
still not seeing it.
You noticed,...
July 11, 2008 at 6:29 am
john.richter (7/10/2008)
...--witness the gentleman above who has yet to be introduced to upper case. I've noticed my own growing propensity to skip words and drop vowels. ...
Could be...
July 10, 2008 at 3:45 pm
What we have: current code, table DDL, sample output.
Missing: sample data for the tables (in the form of INSERT statements that can be cut, paste, and run in SSMS to...
July 10, 2008 at 3:36 pm
Although the WHILE loop eliminates the CURSOR, it doesn't eliminate the RBAR. You are still doing row by row processing.
In order to really help, we need additional information. ...
July 10, 2008 at 1:26 pm
Marty Benson (7/9/2008)
I always just use "JOIN" without the "INNER" and I was...
July 9, 2008 at 4:06 pm
Viewing 15 posts - 24,451 through 24,465 (of 26,490 total)