Viewing 15 posts - 391 through 405 (of 411 total)
I like the article over all and it is definitely addressing a significant topic, but unless I am missing something, you do have relatively an easy way to enforce the...
December 10, 2007 at 4:32 pm
Steve Jones - Editor (12/9/2007)
Or let us know what ytou are trying to achieve. Are you looking to admin? develop software? What areas are you thinking you need to learn.
I...
December 9, 2007 at 1:34 pm
You may wish to set up triggers to log whatever level of detail you may need in a separate table.
Of course, the transaction log itself will hold all of that...
December 8, 2007 at 5:58 pm
I may be missing something. From what I understand, all you need to do is write the query itself, in which you case you just write the query. ...
December 8, 2007 at 4:30 pm
fosco (12/8/2007)
Hi,Can anyone help me, how can I generate reports on an sql server 2000 standard server using t-sql, without reporting services.
Can you be a little more specific?
In...
December 8, 2007 at 11:25 am
The optimizer treats a CTE almost exactly the same way it does a subquery, which is why you would get the same performance from a CTE and the subquery version.
December 7, 2007 at 11:52 am
You might want to look at adding a schema.ini file in the same folder with the text file you are importing and use the schema.ini file to force it to...
December 7, 2007 at 8:25 am
CTE (Common Table Expressions) were introduced in 2005 and can make certain things easier.
I cannot think of any way to speed it up immediately.
December 6, 2007 at 8:37 pm
Matt Miller (12/6/2007)
December 6, 2007 at 6:17 pm
You can use a subquery or a CTE. Either one will do the same thing, but the CTE is more readable if you are using SQL Server 2005.
For instance:
;...
December 6, 2007 at 10:47 am
I have not taken the 431 in particular, but in preparing for multiple other computer certifications and of course the classes in college I find it helpful to make an...
December 2, 2007 at 4:56 pm
The best way to do this is to have an identity column and then have a calculated column that adds whatever prefix you need to the identity. If you...
December 2, 2007 at 4:53 pm
alien (11/28/2007)
For creating the unique key we are using the function UuidCreate() which always generated the unique charecter. We are using the same mechanism for both SQL...
November 29, 2007 at 9:36 pm
It was an awesome article. One point I would reemphasize is the customer service piece. Things will go much more smoothly if you are willing and able to...
November 29, 2007 at 9:30 am
Clive Strong (11/29/2007)
Also, I disagree that you need certification...Its a nice to have and yes,...
November 29, 2007 at 6:29 am
Viewing 15 posts - 391 through 405 (of 411 total)