Viewing 15 posts - 5,701 through 5,715 (of 7,636 total)
grtn316 (8/28/2008)
But if the rows were wider and there were less tables involved, I would lower required disk space but I would be sacrificing performance? Correct?
No. The issue is...
August 28, 2008 at 6:18 pm
Cliff notes: Is it complicated/impossible to load 80gig files with 8 columns of float(decimal) data into SQL Server?
That depends almost entirely on the nature, structure and format of the file....
August 28, 2008 at 4:16 pm
There are 586 tables listed in your Excel file. Which are the 30 that you want to move?
August 28, 2008 at 3:59 pm
I am not sure that I would want to retain the personal Views of expired or departed users. If they have production value they should not have been personally...
August 28, 2008 at 3:27 pm
I am just saying, I do not see where a Tally table comes in? The query that I already posted works fine without it. And I am not...
August 28, 2008 at 3:16 pm
OK, first execute this command (you have to edit it for your excluded user names)
Select U.Name as [Owner], U.TYPE_DESC as [OwnerType], S.Name as [SchemaName], O.*
From sys.objects o
...
August 28, 2008 at 3:13 pm
Well, maybe try this:
SELECT Albums.AlbumID, Albums.AlbumName, Albums.PostedDate, Albums.Views, Resimler.ResimId, Resimler.AlbumID AS Expr1,
...
August 28, 2008 at 2:41 pm
Hmmm, I can't see it either Sergiy. Unless you mean with Dynamic SQL?
August 28, 2008 at 2:35 pm
OK, I think I see part of the problem: I misunderstood the role of the second column: you just want to eliminate all duplicates.
Easy enough:
Select Distinct *
Into #TempFATHAR
...
August 28, 2008 at 2:32 pm
yaman bas (8/28/2008)
Delete From FATHAR
Where EXISTS( Select * from FATHAR T2
Where FATHAR.FATHARREFNO = T2.FATHARREFNO
...
August 28, 2008 at 2:25 pm
You want it to look like this:
UPDATE @mytable
SET
Field1 = CASE Field1 WHEN 'Jim' THEN 'Dave' WHEN 'Dave' THEN 'Jim' ELSE...
August 28, 2008 at 2:17 pm
Vika (8/28/2008)
August 28, 2008 at 2:08 pm
@@TRANCOUNT will tell you if you have an open transaction (and how many).
August 28, 2008 at 1:58 pm
Ok, my bad. Here is the corrected version for SQL 2000:
Delete From YourTable
Where EXISTS( Select * from YourTable T2
Where...
August 28, 2008 at 1:32 pm
Viewing 15 posts - 5,701 through 5,715 (of 7,636 total)