Viewing 15 posts - 9,316 through 9,330 (of 9,641 total)
I thought this was a very interesting article and certainly presented a new way to handle delimited strings without looping. For new applications I would just have the application...
December 5, 2007 at 6:17 am
Paul,
Thanks for the replies. When I ran CheckDB and CheckTable there were no other processes running on the SQL server. I was working on the SQL Server because...
December 3, 2007 at 7:19 am
WILLIAM MITCHELL (11/30/2007)
November 30, 2007 at 9:49 am
Grant Fritchey (11/30/2007)
November 30, 2007 at 6:39 am
cburleigh (11/29/2007)
As far as #10, how do you deal with a situation where the application is a 3rd party app and you can't make performance improvements?
SQL Server is a machine...
November 29, 2007 at 7:49 am
I'm going to simply answer the question posed in the title.
Foreign Keys are a good practice. At the very least there is always at least 2 applications that can...
November 29, 2007 at 7:35 am
If you don't have a valid log file you can use sp_attach_single_file_db which will create an new log file. Use BOL for syntax. I had to use this...
November 29, 2007 at 6:43 am
Good article and it definitely provides a way to find out if you are doing what needs to be done.
As far as #10, how do you deal with...
November 29, 2007 at 6:29 am
Thanks for the reply Paul. I didn't think there was anything I could do to a detached database file.
Yes I am having a problem attaching the database. I...
November 28, 2007 at 11:29 am
With respect to the features, service broker can be extremely helpful, but only if you intend to use it. Doing SOA via SQL Server (HTTP endpoints) saves you a server...
November 27, 2007 at 6:34 am
COALESCE is a function that takes 2 to n arguments and returns the first non-null value. So in Ramesh's example the SUM(OrderLine.QtyOrdered) for any products that have no orders...
November 26, 2007 at 1:57 pm
Ramesh's query should give you the result that you want.
Brandie is correct in discussing table order. If you just change the Inner Joins to Left Outer Joins in your...
November 26, 2007 at 9:50 am
Matt Lacey (11/20/2007)
It would be useful to know what database (version) we will be targeting. This would let us know which data types and features are available.
He does state...
November 20, 2007 at 6:46 am
In the past I have used temp tables or table variables in this situation reasoning that it is usually going to be better to hit the big table once. ...
November 19, 2007 at 7:35 am
Stewart Joslyn (11/16/2007)
November 16, 2007 at 6:51 am
Viewing 15 posts - 9,316 through 9,330 (of 9,641 total)