Viewing 15 posts - 106 through 120 (of 440 total)
Choosing the index is purely based on how the table is being queried and what is are business requirement that table is addressing.
check out the below link for some considerations:
April 9, 2009 at 8:28 am
PRINT IDENT_CURRENT('table')
This will give the most recent IDENTITY value for 'table' - regardless of whether you created it or not
PRINT SCOPE_IDENTITY()
This will give the IDENTITY value last created...
April 9, 2009 at 8:24 am
Instead of suign SELECT INTO why don't you try out BCP???
April 9, 2009 at 8:14 am
Glad to see your issue is resolved 🙂
April 9, 2009 at 8:12 am
Hi The best way to preare is by looking at the official course material for this exam.
Check out the below link
http://www.microsoft.com/learning/en/us/exams/70-431.aspx
If you have any questions on any subjects...
April 9, 2009 at 8:11 am
twantoni (4/8/2009)
""Msg 2601, Level 14, State 1, Line 1
Cannot insert duplicate key row in object 'dbo.INVENTDIM' with unique index 'I_698DIMIDX'.
The statement has been terminated.""
How do I get the original value...
April 9, 2009 at 8:07 am
CREATE TABLE Employee_Test
(
Emp_ID INT Identity,
Emp_name Varchar(100),
Emp_Sal Decimal (10,2)
)
INSERT INTO Employee_Test VALUES ('Anees',1000);
INSERT INTO Employee_Test VALUES ('Rick',1200);
INSERT INTO Employee_Test VALUES ('John',1100);
INSERT INTO Employee_Test VALUES ('Stephen',1300);
INSERT INTO Employee_Test VALUES ('Maria',1400);
CREATE TABLE Employee_Test_Audit
(
Emp_ID...
April 9, 2009 at 8:02 am
home (4/9/2009)
Many thanks for all your help. We are making steady progress with the migrationSophie
Can you tell us about plan and approach...this will help others...
April 9, 2009 at 7:58 am
ulile (4/9/2009)
AFIFM (4/7/2009)
Select ... from a
except
select ... from b
that gives you all rows from table a that are not in table b
From query prespective how is this different...
April 9, 2009 at 7:50 am
Inspiring article. Thank you for sharing with us...
April 9, 2009 at 7:17 am
The best way to find that is verifying with Consumers who are using your database.
April 8, 2009 at 10:38 am
Steve Jones - Editor (4/1/2009)
I've never seen anything like this for Oracle. We've been tempted to start one, but we don't know enough about Oracle 🙂
Hi Steve,
I am sure...
April 8, 2009 at 10:34 am
Hi Tanya
Global temporary tables are dropped when last session accessing the tables is closed. It is always good practice to drop the temporary tables in the same scope, once we...
April 8, 2009 at 10:30 am
In Other words i did exactly same as Flo mentioned in this post.
April 8, 2009 at 8:40 am
Saleha Rizvi (4/7/2009)
Did the identity fields work ok when you moved to the new server? Did the seed started from where it was left at the old server.
The way i...
April 8, 2009 at 8:40 am
Viewing 15 posts - 106 through 120 (of 440 total)