Viewing 15 posts - 5,281 through 5,295 (of 8,753 total)
shivakumar.623 (5/14/2015)
My database was crashed then How to identified in particular server particular database was crashed
Quick question, (and piling on the previous questions) can you tell us what you mean...
May 16, 2015 at 2:47 pm
Further on Gail's answer
😎
DECLARE@SortOrder VARCHAR(100),
@SortDirection VARCHAR(100)
SELECT @SortDirection = 'ASC'
SELECT @SortOrder = 'ExpirationDate' --'DocumentName' --NULL --'DocumentName'
--SELECT @SortOrder = '[Year]'
--SELECT @SortDirection = 'ExpirationDate'
IF OBJECT_ID(N'tempdb..#TEST') IS NOT NULL DROP TABLE #TEST;
CREATE TABLE #TEST
(
DocumentName...
May 16, 2015 at 2:19 pm
Still waiting for an answer to the question Why?
😎
May 16, 2015 at 2:05 pm
Another approach, not perfect but not bad either;-) Additional metrics can be used to enhance the logic.
😎
USE tempdb;
GO
SET NOCOUNT ON;
;WITH BASE_DATA AS
(
SELECT
...
May 16, 2015 at 2:01 pm
Jeff Moden (5/14/2015)
Candidate: I don't. It's just that everyone else sucks so bad that I end up...
May 16, 2015 at 1:40 pm
Grant Fritchey (5/15/2015)
May 16, 2015 at 1:37 pm
snoqualmiewa (5/16/2015)
The insert statement in page 294 fails (SQL Server 2014 Integration Services text by Brian Knight). Any Ideas what data should be entered for the PACKAGE ID? Thanks
INSERT INTO...
May 16, 2015 at 1:32 pm
Quick note, the SQL Server Data Tools is the replacement for BIDS and provided as a separate downlod.
😎
May 16, 2015 at 1:30 pm
Very good points there Steve and the in a nutshell the reason why I tell the DBAs to register at SQL Server Central.
😎
May 16, 2015 at 1:28 pm
snoqualmiewa (5/16/2015)
The insert statement in page 294 fails (SQL Server 2014 Integration Services text by Brian Knight). Any Ideas what data should be entered for the PACKAGE ID? Thanks
INSERT INTO...
May 16, 2015 at 1:14 pm
Further on Steve's reply, probably the best gain would be in spreading the tempdb data files.
😎
May 16, 2015 at 5:08 am
Jeff Moden (5/15/2015)
May 16, 2015 at 4:45 am
Scott Coleman (5/15/2015)
I have a lot of code that references our...
May 16, 2015 at 2:13 am
born2achieve (5/14/2015)
I am into trouble now about some street names having names city name and the current logic removed the the street name as well
ex:
address = '555 Manhatten...
May 16, 2015 at 2:06 am
Sapen (5/14/2015)
I am using sql2012 se and we want to use couchbase to store some data as documents. So the database will be Hybrid(partly SQLServer and Partly couchbase). However the...
May 15, 2015 at 7:53 am
Viewing 15 posts - 5,281 through 5,295 (of 8,753 total)