Viewing 15 posts - 61 through 75 (of 330 total)
Craig,
You wrote
>>> CREATE TABLE FooBar (FooBarID INT IDENTITY( 1, 1), <tabledef>) should work just as well. If it's a matter of needing to know the ID for multiple inserts, look...
September 19, 2010 at 5:07 pm
Thanks for the answer Lowell!
Barkingdog (from one dog to another.....)
June 23, 2010 at 5:22 pm
Thanks to everyone for some really fascinating answers.
Barkingdog
June 8, 2010 at 8:53 pm
Paul,
The column is defined as NOT NULL and there are no indexes or constraints defined on the table.
Barkingdog
May 26, 2010 at 2:15 pm
Jeff,
You wrote "Actually, you don't need TRY/CATCH for any of that. Take it out of the above query and see what happens." I tried that and found that, indeed, I...
April 24, 2010 at 2:03 am
Figured it out. Needed to import package under SSMS, Integration Services connection, not from BIDS directly.
grrrrrr!
April 19, 2010 at 12:03 pm
That was helpful.
Would this interpretation of the original code be correct?
>>>
USE AdventureWorks;
GO
BEGIN TRANSACTION;
BEGIN TRY
...
COMMIT TRANSACTION;
END TRY
BEGIN CATCH
...
April 18, 2010 at 5:03 pm
Here's another twist from http://www.sql-server-performance.com/tips/covering_indexes_p1.aspx
>>>
If you want to create a covering index, if possible, try to piggyback on already existing indexes that exist for the table. For example, say...
April 15, 2010 at 1:30 am
Adi,
You wrote
>>>
Most chances are that when you added the other column to the index, the index was a covering index. A covering index is an index that is composed...
April 15, 2010 at 12:58 am
Lowell,
That is a very interesting idea which I had not heard of before.
Thanks,
Barkingdog
April 14, 2010 at 10:34 pm
Thanks to everyone for the good ideas. All of the posts offered different perspectives, just what I wanted.
Barkingdog
March 27, 2010 at 3:39 pm
>>> Once again - if your default system roles are not owned by the dbo principal
My default system roles are owned by dbo. My default schemas are not.
Barkingdog
February 10, 2010 at 9:57 pm
Jeffrey,
You wrote
>>> I have not found a reason yet to create a schema that was not owned by dbo.
I may have misunderstood what you wrote but every "standard"...
February 10, 2010 at 9:30 pm
You're right Steve!
Originally I followed this path for the fixed database roles. (I expected to see how Microsoft had setup the permisions). And there is no securable tab for...
February 10, 2010 at 1:59 pm
Viewing 15 posts - 61 through 75 (of 330 total)