Viewing 15 posts - 106 through 120 (of 782 total)
Did you check sql server logs/error logs and event log (Windows) to see if you can
get more detail of the error.
Regards,
Sushant
December 1, 2011 at 6:14 am
Also,
maybe the server is configured only for Windows authentication. IF it is, Turning on Windows+SQL server authentication can solve the problem.
Regards,
Sushant
December 1, 2011 at 5:54 am
Hi,
Did you see error in sql server logs/error logs...
You might get more info from there.
Regards,
Sushant
December 1, 2011 at 5:52 am
Richard Moore-400646 (11/28/2011)
November 28, 2011 at 1:54 pm
Oksana March (11/26/2011)
Personally, I hate when people tell me to "Google it" or look in Books Online (everyone knows already there is that option, why remind?)
Lutzm +1
Regards,
Skybvi
November 28, 2011 at 7:30 am
Edition upgrade of 2008 R2 is quite different from what we used to do in SQL Server 2005, where we have to start installer from command prompt by passing the...
November 21, 2011 at 7:14 am
Have you tried searching on google?
There's no way you can't find the answers there...
Regards,
Skybvi
November 21, 2011 at 6:16 am
Jpotucek (11/18/2011)
Thank you!!!
I ran this and it worked:
;WITH cte
AS (SELECT ROW_NUMBER() OVER (PARTITION BY path, sortOrder,id, repname, repfilepath, language_cd, updateddate, repFormat
--add all column names col1,col2,...
ORDER BY ( SELECT 0)) RN
FROM...
November 18, 2011 at 12:25 pm
Cliff Jones (11/18/2011)
SKYBVI (11/18/2011)
;WITH cteAS (SELECT ROW_NUMBER() OVER (PARTITION BY Col1, Col2
--add all column names col1,col2,...
ORDER BY ( SELECT 0)) RN
FROM table)
DELETE FROM cte
WHERE RN > 1
Regards,
Sushant
Yes Sushant, I was...
November 18, 2011 at 12:22 pm
Other than that, Does somewhere the 'sa' password is hard coded??
Regards,
Skybvi
November 18, 2011 at 11:32 am
;WITH cte
AS (SELECT ROW_NUMBER() OVER (PARTITION BY Col1, Col2
--add all column names col1,col2,...
ORDER BY ( SELECT 0)) RN
FROM table)
DELETE FROM cte
WHERE RN > 1
Regards,
Sushant
November 18, 2011 at 11:31 am
Viewing 15 posts - 106 through 120 (of 782 total)