Viewing 15 posts - 16 through 30 (of 3,010 total)
shreekanth.kavali (2/22/2015)
February 22, 2015 at 4:45 pm
Srl832 (2/3/2015)
February 3, 2015 at 8:35 pm
I worked at a place where consultants came up with a design for a high volume OLTP application that would completely replace SQL Server with XML flat files to store...
February 1, 2015 at 1:41 am
When you rebuild indexes, it generates a lot of transaction log records.
How often are your transaction log backups running? If you don't run them often enough, the transaction logs...
January 30, 2015 at 12:44 am
Luis Cazares (1/27/2015)
January 28, 2015 at 3:07 am
Does it have the option of generating and displaying the rebuild or reorg commands without actually executing them? I guess I would call this a preview option. It...
January 28, 2015 at 2:35 am
On thing you should not forget it the effort required by developers to change all the applications to point at the new instance name/database name.
Developers and administrators usually are not...
January 28, 2015 at 2:14 am
I haven't seen much improvement in compression using third party backup tools compared to the native SQL Server 2008R2 backup compression.
Some of the third party backup tools have features you...
January 26, 2015 at 9:15 am
severnj (1/25/2015)
Thank you all for the help on this. I tried the below listed steps but maybe I am doing something wrong? ...
January 25, 2015 at 2:15 pm
You will have to re-index before you can shrink the databases, and then again afterwards to remove index fragmentation.
Although there is a lot of space available in the database, is...
January 24, 2015 at 11:34 pm
This is probably a variation of a Bill of Materials design. There a usually many layers of parts for each sub-assembly, and the same part can occur in many...
January 20, 2015 at 2:19 pm
Alvin Ramard (1/20/2015)
kabaari (1/19/2015)
Those both achieved my goal. I was having difficulty with querying against a getDate() Inserted value. The time is also captured at insert which had...
January 20, 2015 at 2:08 pm
You have two impossible combinations in your selection criteria:
MONTH(c.dateentered) >= 11 and (MONTH(c.dateentered) <= 01
DAY(c.dateentered) >= 23 and DAY(c.dateentered) <= 19
It appears you are looking for data from...
January 19, 2015 at 1:38 pm
As other people have mentioned, convert it to a date or datetime value first, and then convert it back to a string using the CONVERT, date, and string functions.
Here are...
January 3, 2015 at 3:27 pm
dastagiri16 (1/2/2015)
is there any way to change sql server default isolation level ?not for db level...entire sql server?
Please advice
No, there isn't. It's a connection setting, not a database...
January 2, 2015 at 3:31 am
Viewing 15 posts - 16 through 30 (of 3,010 total)