Viewing 15 posts - 1,651 through 1,665 (of 3,011 total)
Conversion of 0 or other numbers directly to datetime is documented in SQL Server Books Online.
select
DT,
...
September 3, 2009 at 9:23 am
The performance of SAN depends on so many things that you really need to test it to make sure you have the expected performance. The 9 MB/Sec you mentioned...
September 3, 2009 at 8:34 am
Tables and indexes are assigned to filegroups, not files, so the normal assumption will be that the data is spread across all files in the filegroup.
If you run DBCC SHRINKFILE...
September 2, 2009 at 4:57 pm
Let’s just say that I am jaded by years of seeing this, but my expectation would actually be to get something far worse than what you described:
A database that is...
September 2, 2009 at 4:50 pm
Is is possible that the server you are having trouble with does not have the Lithuanian collations available?
September 2, 2009 at 12:54 pm
You said yourself that Windows authentication cannot be used with the login you are trying to use, so I am not sure what you are asking.
September 1, 2009 at 10:03 am
Microsoft says that they do support an direct upgrade from 2005 Evaluation Edition to 2005 Enterprise Edition, but recommend uninstalling if you plan to go to Standard, Workgroup,or Developer Edition.
http://www.microsoft.com/sqlserver/2005/en/us/trial-software.aspx
"The...
September 1, 2009 at 9:53 am
SQL Server 2000 does not have any built-in ability to do decryption or encryption.
There are some third-pary add on products that might be able to do what you want, or...
September 1, 2009 at 9:26 am
Another perspective to remember is that there are other people who may read a thread looking for answers.
I think for the benefit of these people, an answer that they should...
September 1, 2009 at 9:09 am
This script gets the file information for every database on a server, and inserts it into temp table that is queried multiple ways to give various levels of analysis of...
August 31, 2009 at 3:52 pm
This will work for any datetime range.
select
StartDate,
EndDate,
...
August 28, 2009 at 3:15 pm
One of the causes of corruption is a hardware problem with the disk, and that can cause a problem with any database, even one in read-only mode.
As long as you...
August 28, 2009 at 2:25 pm
What would you want to see if more than one item for a customer sold for the same max price?
August 28, 2009 at 2:18 pm
This seems to do the job:
select
JD,
DT = dateadd(dd,(JD%1000)-1,dateadd(yy,JD/1000,0))
from
...
August 28, 2009 at 12:34 pm
Ronzo (8/27/2009)
Clustered default instance of SQL Server with different virtual IP address and network name then the virtual name and...
August 27, 2009 at 9:46 am
Viewing 15 posts - 1,651 through 1,665 (of 3,011 total)