Viewing 15 posts - 1,246 through 1,260 (of 3,011 total)
I can’t believe that no one has mentioned having Microsoft implement true clustering for SQL Server. In other words, have a database active and processing requests on multiple active...
September 23, 2010 at 8:04 am
Steve Brokaw (9/22/2010)
More info from my SQL DBA group: They claim that the guest account has access to the sample databases, and that can't be taken away...
They certainly can...
September 22, 2010 at 3:27 pm
You can just use the ROUND function to round the age up or down.
select
a.*,
RoundedAge = round(a.Age,-1)
from
( -- Test Data
select Age = 65 union all
select Age = 64 union all
select Age...
September 21, 2010 at 10:25 pm
Ask them to explain exactly how those databases are a security risk.
They may just be taking some old-wives tale at face value.
I think I heard the same thing from our...
September 21, 2010 at 4:00 pm
Not to rain on Colins parade, but the benefit that you get from compression of a Sharepoint content database backup may not be very much, because compression is highly dependant...
September 9, 2010 at 7:44 am
update MyTable
set
StartDate = dateadd(dd,datediff(dd,0,StartDate),'07:00:00.000')
where
StartDate = dateadd(dd,datediff(dd,0,StartDate),0)
September 3, 2010 at 10:00 am
If there is someone else with all the servers registered in SSMS 2008, you can have them export their server list, and you can import it.
The export file is XML,...
September 3, 2010 at 9:00 am
declare @emp table
(empid int identity(1,1) primary key clustered, dob datetime not null)
insert into @emp (dob)
SELECT convert(datetime,'1962-12-11 00:00:00.000') AS dob UNION ALL
SELECT convert(datetime,'1958-03-28 00:00:00.000') AS dob UNION ALL
SELECT convert(datetime,'1960-02-29 00:00:00.000') AS...
September 3, 2010 at 8:30 am
Money and decimal(19,4) do not do exactly the same thing in calculations, as the following code demonstrates:
select
a.*,
[DecDivision]= [DecMoney]/ convert(decimal(19,4),0.9999),
[MoneyDivision] = [MoneyMoney]/ convert(money,0.9999)
from
( -- Test Data
select
[DecMoney]= convert(decimal(19,4), 19.7777 ),
[MoneyMoney]= convert(money, 19.7777...
September 2, 2010 at 1:19 pm
Why disable the foreign keys? Just load the data into the tables in the correct order.
The following script will show you the correct order to load the data.
Find Table...
September 2, 2010 at 10:39 am
alen teplitsky (9/1/2010)
i know someone that left a secure job that he thought he outgrew for a company that was on the verge of bankruptcy. except he didn't know...
September 2, 2010 at 9:56 am
The error message explains it fairly well, and it has nothing to do with filegroups.
That feature is only supported by Enterprise Edition or Developer Edition.
September 1, 2010 at 9:09 pm
There is no reason why Developer Edition would prevent you from creating filegroups.
September 1, 2010 at 3:10 pm
A CASE statement can only return one datatype.
September 1, 2010 at 3:08 pm
Viewing 15 posts - 1,246 through 1,260 (of 3,011 total)