Viewing 15 posts - 6,121 through 6,135 (of 7,505 total)
Did you try ...
ALTER SCHEMA system_function_schema TRANSFER dbo.fn_DateTime24;
September 5, 2006 at 8:11 am
- someone didn't pay attention when creating/altering the table. ![]()
- Latin_General_CI_AS is a "new" sqlserver2005 collation. This should have some advantages for NVarchar.
September 5, 2006 at 5:57 am
are you looking for e.g.
Me
.myrelationddl.SelectedValue.ToString
September 5, 2006 at 5:51 am
just to add to Balmukund Lakhani 's replies :
- check you have installed SQL2000 Enterprise Edition !
September 5, 2006 at 5:19 am
If you can, don't shrink the logfile !
Every extend it needs, takes an extra efford of your server.
It only extends if needed, due to transaction load.
It's a good choice...
September 5, 2006 at 1:40 am
alter database xx set RECOVERY SIMPLE .
This way every ended transaction's logspace is immediatly set available again.
Point in time recovery is not possible. you can only restore fullbackups and differentials.
If the sum transactions...
September 5, 2006 at 1:22 am
select mycol, case when myrowcountcol > 1 then 'High'
when myrowcountcol < 1 then 'Low'
else 'ONE'
end as HL
from (select mycol, count(*) as myrowcountcol
from .....
group by mycol
) A
September 5, 2006 at 1:13 am
We use Gert Drapers (SQLDev.Net) XPSMTP and send the queryresult as an attatchment.
September 4, 2006 at 12:38 am
you'll need to use sp_changedbowner to change a db's owner.
sa = systemadministrator = omnipotent meaning has all authority to do anything with all db of a serverinstance. If you make...
September 4, 2006 at 12:35 am
IMO the problem is that your primary key is CLUSTERING !
This also has an impact to _all_ NCI !
Drop and recreate your Primary key but make it non-clustering.
Create a clustering...
September 1, 2006 at 5:33 am
DECLARE @Date_Time_Requested DATETIME
DECLARE @Count_TimeOut_Records INT
DECLARE @MailMessage VARCHAR(8000)
DECLARE @NewLine CHAR(2)
DECLARE @Oldest_Date DATETIME
DECLARE @EmailAddress VARCHAR(50)
DECLARE @MailSubject VARCHAR(150)
---Initialisation
SELECT @Oldest_Date = getdate()
SELECT @Count_TimeOut_Records = 1
Set @EmailAddress = 'yourmailaddress@yourprovider.whatever'
SELECT @NewLine = char(13) + char(10)
SELECT @MailSubject = 'TEST ! (...
September 1, 2006 at 5:21 am
@query = 'select * from AIS.dbo.vwOrdersShippedNotInvoiced'
this may "sound" redicule, but that's how it always works overhere ![]()
September 1, 2006 at 5:14 am
I suppose each node hosts 2 active instances of sqlserver.
On each node the active instanceses will compete for the ram (6Gb < 2*4Gb) and cpu (4speed cpu < 2*4slow ? ) ....
August 31, 2006 at 7:51 am
btw "...The databases migrated from four standalone servers with quad processors and 4 to 6GB of memory...."
could it be that .... 4 * 4slow + 4*(4 to...
August 31, 2006 at 7:03 am
may I add ....
DBCC dbreindex all your tables and indexed views and indexes.
dbcc updateusage(yourdb) with count_rows
sp_updatestats all your db
and SP4 has changes regarding implicit datatypeconversion ! This may have a...
August 31, 2006 at 6:56 am
Viewing 15 posts - 6,121 through 6,135 (of 7,505 total)