Viewing 15 posts - 61 through 75 (of 462 total)
Don't forget: SQL2K 64 bit Edition runs ONLY on Itanium processor ie. NOT on AMD Opteron.
To be able run the 64 bit version you will have to upgrade to SQL2005
November 30, 2005 at 5:33 am
Also if you know the ASCII code of your special character then you can insert it like this example is inserting a carriage return (ASCII code 13) between Column1 and...
November 18, 2005 at 2:57 am
But you have a performance drawback due to the Unicode storage of 2 bytes instead of 1. It means that you need twice as much storage space as for a...
November 14, 2005 at 6:21 am
try this: select cast(IntA, float) / cast(IntB, float) * 100
November 4, 2005 at 2:27 am
did you try to create a CLUSTERED index on dt, src, type? In this order. Because you are doing a range seeking (between) and a "LESS THEN" comparison so a...
November 3, 2005 at 1:27 am
I've got exactly the same problem but the only reliable solution I've found is to move the rows containing the largest columns into the first 8 row.
This is a known issue with...
November 2, 2005 at 7:34 am
First you can copy the required tables vie the select * into newdb.newuser.Newtable from olddb.olduser.oldtable order
Then you have to create the required indexes.
After that the views, SPs, trigger. You can...
October 28, 2005 at 3:07 am
For the very first time you have to know some basics:
dbreindex is not useful if your table is less then a segment (8 pages)
Also if you do not have clustered...
October 21, 2005 at 3:04 am
Here is an another approach:
declare @d datetime
set @d = getdate()
select cast(cast(@d-0.5 as int) as datetime)
This is almost equivalent to
select CAST(FLOOR(CAST(@d AS DECIMAL(12, 5))) AS DATETIME)
October 6, 2005 at 7:20 am
Just have a look in your C:\Program Files\Microsoft SQL Server\80\Tools\DevTools\Samples folder.
You can find a lot of samples there to start you development with
September 22, 2005 at 5:05 am
Otto,
What you know is right SQLServer 2000 64 bit runs only on Itanum.
SQL2005 will run on AMD processors as well.
Did you check for your environment the boot.ini, AWE and the...
September 5, 2005 at 5:19 am
First I would update the stats then recompile the SP. Also you should check the execution plan whether you are still using all the required indexes
August 24, 2005 at 9:58 am
Yes.
And what I mean by this is if you have a wrong written SQL statement with wrong or no index using it doesn't really make sense increasing the HW power,...
August 18, 2005 at 6:50 am
All this.
In addition you can check where you bottleneck is (Disk, CPU, Memory, Network, Client app...). What you have to know: Adding more memory always helps. But if you have...
August 18, 2005 at 3:43 am
There is no magic number. It depends on your way of doing SQL statements (more long running, ressource intensive queries will allow less concurrent access without a performance penality)
I have...
August 17, 2005 at 3:56 am
Viewing 15 posts - 61 through 75 (of 462 total)