Viewing 15 posts - 2,296 through 2,310 (of 3,011 total)
You can use the script on this link to get information on all databases on a server at the same time.
Get Server Database File Information
July 2, 2008 at 1:01 pm
If you have the time, and think you might want the job, there is no harm in taking the test.
The worst that can happened is that you don’t get a...
June 30, 2008 at 4:19 pm
I use different SQL Server service accounts and passwords for each SQL Server instance. We have about 200 SQL Server instances; so it is out of the question to...
June 27, 2008 at 8:45 am
The instance name is stored in master, but changing that is well documented.
You will also need to update the originating_server in sysjobs (does not apply to SQL 2005)
There will also...
June 18, 2008 at 6:19 pm
I don't really see the point in what you are doing, because you can just break out the date and time parts when you need to.
You can break them out...
June 18, 2008 at 4:52 pm
The easiest way is to left join each row to the prior row for the same customer, and do a difference between the dates from the current and prior row...
June 18, 2008 at 4:47 pm
What if you need to do Banker's Rounding to the nearest 5 cents? :Whistling:
June 17, 2008 at 8:42 pm
select
a.Date,
LastSundayOfMonth =
dateadd(dd,(datediff(dd,-53684,dateadd(mm,datediff(mm,-1,a.Date),-1))/7)*7,-53684)
from
(
--Test Data
select Date = convert(datetime,'20080101')union all
select Date = convert(datetime,'20080201')union all
select Date = convert(datetime,'20080301')union all
select Date = convert(datetime,'20080401')union all
select Date = convert(datetime,'20080501')union all
select Date = convert(datetime,'20080601')union all
select Date = convert(datetime,'20080701')union...
June 12, 2008 at 3:30 pm
The sad truth is that the Excel bugs are intentional "features" that were put in to match the behavior of Lotus 123 where the bug originated.
June 12, 2008 at 3:09 pm
I do not believe that you can restore a SQL Server 2005 database backup to SQL Server 2000.
June 11, 2008 at 12:13 pm
This might be close to what you want.
Defragment Indexes stored procedure - new version:
http://weblogs.sqlteam.com/tarad/archive/2007/11/27/60415.aspx
June 10, 2008 at 3:14 pm
I wouldn’t say that the value of certifications has declined in my eyes, simply because I have never given them any weight at all in choosing candidates.
June 6, 2008 at 11:41 am
Companies have to to be very selective in the technologies they adopt and anticipate the available labor pool that will be able to support it.
If you decide to adopt a...
May 29, 2008 at 7:51 am
The two tables don't have the same structure. Also, you didn't post the DDL for the primary keys.
May 28, 2008 at 9:18 am
Viewing 15 posts - 2,296 through 2,310 (of 3,011 total)