Viewing 15 posts - 391 through 405 (of 607 total)
Using Powershell you can query SQL Server and create rich excel sheets with the data.
June 11, 2013 at 2:37 am
nts 4650 (6/7/2013)
Dim Sql As String = "Select Coalesce(NombreCliente,'') +'
Teléfono:'+ Coalesce(TelefonoParticular,'') + '
Movil:' + Coalesce(TelefonoMovil,'') +...
June 11, 2013 at 2:22 am
I modified sp_send_dbmail and added the following line at the start of the proc.
SET @body = @body + CHAR(13) + CHAR(10) + CHAR(13) + CHAR(10) + 'SQL Server Mail Sent...
May 28, 2013 at 6:19 am
1. Create new filegroup.
2. Create new 50Gb file on new filegroup.
3. Rebuild all indexes onto new filegroup.
4. Drop old filegroup (or shrink to tiny if it is PRIMARY).
This way you...
May 27, 2013 at 7:54 am
Ross.M (5/23/2013)
Sean Pearce (5/23/2013)
Right click your job in SSMS
Script Job as -->
DROP And CREATE To -->
New Query Editor...
May 23, 2013 at 5:28 am
KoldCoffee (5/22/2013)
May 23, 2013 at 4:54 am
Ross.M (5/23/2013)
Sean Pearce (5/23/2013)
Ross.M (5/14/2013)
(1) What might have caused this?
(2) Is it safe to just...
May 23, 2013 at 3:43 am
Ross.M (5/14/2013)
(1) What might have caused this?
(2) Is it safe to just do an UPDATE...
May 23, 2013 at 2:49 am
SQL_ME_RICH (5/22/2013)
Well - that definitely changed things, but now it creates a whole new error all together (I went back to the first set of INSERT statements, and...
May 23, 2013 at 1:57 am
If the columns are nullable then you can concatenate.
CREATE TABLE House
(House_No_Start VARCHAR(10) NULL,
House_No_End VARCHAR(10) NULL,
House_Name VARCHAR(50) NULL);
GO
INSERT INTO House VALUES
('1', '3', NULL),
('2', NULL, NULL),
(NULL, NULL, 'The Manor');
GO
SELECT
ISNULL(House_No_Start, '') + ISNULL('...
May 21, 2013 at 5:18 am
Jason Nel (5/7/2013)
Hi did you find out what caused the issue?
The Exchange administrators change something and the problem was resolved. I'm not sure what they changed as it was at...
May 21, 2013 at 5:13 am
Is this on a physical server or a VM?
May 21, 2013 at 4:45 am
I just tried to replicate my findings from yesterday and found some differences. Then I realized I was on a different server with different MAXDOP settings. I reran my test...
May 21, 2013 at 1:26 am
Scenario A - Clustered Index. This should read one page and write one page.
Scenario B - Clustered Index & non-participating non-clustered Index. This should read one page and write one...
May 20, 2013 at 3:09 am
Grant Fritchey (5/17/2013)
The one difference there that's pretty likely to be the culprit are the Compute Scalar operators in that last query. That's going to have an effect.
I realize this...
May 20, 2013 at 12:41 am
Viewing 15 posts - 391 through 405 (of 607 total)