Viewing 15 posts - 21,496 through 21,510 (of 22,184 total)
I don't have a clue. Would the ANTS Profiler from Red Gate work?
November 16, 2007 at 1:10 pm
If just the tools supplied by SQL Server, sp_depends or sys.sql_dependencies, are not enough, you migh also want to consider looking at Red Gate's SQL Dependency Tracker
November 16, 2007 at 11:32 am
In order to really provide an answer, a lot more detail would be needed regarding what the data structure looks like. It could be something as simple as providing an...
November 16, 2007 at 10:59 am
Great. Thanks for the reply.
I should have looked at the INSERT statement. Missed it. That explains things nicely.
November 16, 2007 at 8:05 am
How about something like this? It doesn't provide for a zero based sequence number, but it does put the numbers in the correct order. Indexing could be an issue to....
November 16, 2007 at 7:57 am
The only way to do it is to build it out completely, but I have to agree, are you sure you need a cursor?
Here's an example, ugly though it...
November 16, 2007 at 5:53 am
rose_red1947 (11/14/2007)
I have two fields, first field is with identity values like
1,A
2,B
3,C
4,D
5,E
6,F
7,G
8,H
9,I
10,J
I need to delete values 3,C and 7,G after this i want to rearrange identity values to get...
November 16, 2007 at 5:40 am
Those are settings that the tool the user is accessing the database from must set. They are controlled per connection.
November 16, 2007 at 5:29 am
What do you mean by "data created at the database level"?
Do you mean, is it more or less performant to create a GUID or some other type of primary key...
November 15, 2007 at 5:46 am
Megha Yadav (11/15/2007)
November 15, 2007 at 5:40 am
SQL Noob (11/14/2007)
November 14, 2007 at 10:00 am
SQL Noob (11/14/2007)
we have very few FK's where i...
November 14, 2007 at 8:49 am
Personally, I'd say yes, add the constraints.
Everything Michael Earl said is true. You can simply rely on the fact that the application has the integrity covered. However, as a DBA,...
November 14, 2007 at 6:48 am
Well, let's say you have 30 different fields, all customizable by the user. This particular user only uses 5 of the fields, the other 25 lie fallow. When you insert...
November 14, 2007 at 5:50 am
Viewing 15 posts - 21,496 through 21,510 (of 22,184 total)