Viewing 15 posts - 2,776 through 2,790 (of 8,753 total)
Aubrey-314204 (11/11/2016)
November 11, 2016 at 9:44 pm
Ed Wagner (11/11/2016)
Sean Lange (11/11/2016)
Phil Parkin (11/11/2016)
Eirikur Eiriksson (11/11/2016)
😎
Not certain how to read these requirements.
I'm not sure for...
November 11, 2016 at 12:45 pm
Quick Dynamic SQL solution
😎
USE TEEST;
GO
SET NOCOUNT ON;
DECLARE @TEMPLATE NVARCHAR(MAX) = N'
UNION ALL
SELECT
''{{@SCHEMA_NAME}}.{{@TABLE_NAME}}'' AS TABLE_NAME
,COUNT(*) AS ROW_COUNT
...
November 11, 2016 at 9:26 am
Alvin Ramard (11/11/2016)
Eirikur Eiriksson (11/11/2016)
andy.plumb (11/10/2016)
Description: An error occurred executing the provided SQL command: "SELECT * FROM U_Observation WHERE UPDATED_DATE >...
November 11, 2016 at 8:45 am
andy.plumb (11/10/2016)
Description: An error occurred executing the provided SQL command: "SELECT * FROM U_Observation WHERE UPDATED_DATE > DATEADD(YEAR-2,GETDATE())". Native error :...
November 11, 2016 at 8:28 am
ramana3327 (11/11/2016)
I am sure, I was not logged as sa.
Then your login is a member of the sysadmin role
😎
November 11, 2016 at 8:23 am
Here is a quick suggestion
😎
USE TEEST;
GO
SET NOCOUNT ON;
;WITH CT(CN) AS (SELECT CN FROM (VALUES ('0'),('1'),('2'),('3'),('4'),('5'),('6'),('7'),('8'),('9')) X(CN))
SELECT
REPLICATE(C.CN,6) + CX.CN AS GEN_SEQ
FROM CT C
CROSS APPLY CT CX
WHERE ...
November 11, 2016 at 7:54 am
hoseam (11/11/2016)
November 11, 2016 at 5:29 am
😎
Not certain how to read these requirements.
November 11, 2016 at 5:20 am
TheSQLGuru (11/10/2016)
Eirikur Eiriksson (11/10/2016)
homebrew01 (11/10/2016)
November 11, 2016 at 3:17 am
sqlserverDBA2016 (11/11/2016)
November 11, 2016 at 2:26 am
niall5098 (11/10/2016)
I am trying to update a default instance to sp3. the issue however is when the patch runs it fails with the following error:
=== Verbose logging started: 04/11/2016...
November 11, 2016 at 1:39 am
Would have thought that if you carefully follow the process detailed in that page "Setting Up Windows Service Accounts", you should be safe.
😎
Why don't you set up another instance and...
November 11, 2016 at 1:26 am
BLOB EATER (11/11/2016)
Quick question, when I send a message to another forum member does that not get saved in my sent item folder by default? thanks
No, you will have to...
November 11, 2016 at 1:15 am
Good job with the DDL and the sample data, can you complete this by posting the desired results?
😎
November 11, 2016 at 1:13 am
Viewing 15 posts - 2,776 through 2,790 (of 8,753 total)