Viewing 15 posts - 1,441 through 1,455 (of 3,011 total)
Baseball would be better with a true open market: uncapped salaries, no draft, and uncapped ownership. The reason that the Yankees can generate so much money is because...
April 7, 2010 at 12:25 pm
I like the fact that you can restore a 2008 compressed backup on any edition of SQL Server 2008.
Much nicer than having to install LiteSpeed on a server in order...
April 7, 2010 at 10:26 am
Based on my understanding of your requirements:
declare @t table (
RegionName varchar(10) not null primary key clustered,
[Min] int not null,
[Max] int not null,
[NumberToGenerate] int not null
)
insert into @t
select 'Region 1',...
April 6, 2010 at 3:44 pm
Are you using the same service account on multiple SQL Servers?
That is a bad idea for many reasons, one of which is how hard it is to change on multiple...
April 6, 2010 at 3:04 pm
Very urgent???
Do you need to build your data warehouse today?
April 6, 2010 at 1:42 pm
Is the Location id column a string data type, like varchar or nvarchar?
If it is, you will have to cast the column to an integer datatype in the order by....
April 5, 2010 at 3:36 pm
mike.styers (4/5/2010)
Once you break out what each IT service costs, all it takes is a member of upper mgmt to say, "Look what were paying for <whatever...
April 5, 2010 at 12:47 pm
Why there would be a need to explain SQL in layman’s (Lehman’s) terms?
Are the business people looking at stored procedures to try to figure out what they do?
April 5, 2010 at 8:47 am
Try moving the tables you are truncating into a new file group
The files in the new file group should be able to shrink fairly rapidly, since they will be empty...
April 1, 2010 at 2:52 pm
Wildcards only work with the LIKE operator, not >= or <=
March 31, 2010 at 6:12 pm
vidya_pande (3/31/2010)
thanks Lynn....
Oracle RAC provides load balancing. Is there any equivalent feature in SQL? If not what is work around soultion ?
Get a bigger, faster server so it can...
March 31, 2010 at 4:46 pm
It wouldn’t do anything you can’t do already. You can restore a database with a new name, verify it is OK, drop the old database, and then rename the...
March 29, 2010 at 2:12 pm
The script on the link below will give you what you want.
Find Table Reference Levels
March 24, 2010 at 2:03 pm
I think most problems with database applications are built-in at the design stage.
Once you do a poor job of modeling data, it becomes almost impossible to make a significant change...
March 24, 2010 at 12:25 pm
If you feel that you really need to shrink the database, the script on the link below should do it. Shrinking the database file will result in index fragmentation,...
March 23, 2010 at 2:13 pm
Viewing 15 posts - 1,441 through 1,455 (of 3,011 total)