Viewing 15 posts - 1,441 through 1,455 (of 3,008 total)
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
Lynn Pettis (3/23/2010)
Actually there are still a good number of current Dungeons and Dragons players out here. Why not call it a "Guild"? Other professions have Guilds, why...
March 23, 2010 at 10:01 am
You can create a FK that references a column that has a unique constraint that is not the primary key. If the Code column in TaxTable is unique and...
March 23, 2010 at 9:41 am
TravisDBA (3/23/2010)
Michael Valentine Jones (3/23/2010)
March 23, 2010 at 9:28 am
Viewing 15 posts - 1,441 through 1,455 (of 3,008 total)