Viewing 15 posts - 646 through 660 (of 1,491 total)
I would start by learning RMAN as backup and restore is fundamental to the job of a DBA.
SQLDeveloper, being java based, is relatively easy to install on a Windows machine....
December 10, 2015 at 10:32 am
I have just found this link.
http://www.nomad.ee/btrieve/files/
You may be able to use some of the utilities to export from the Btrieve files without the need for Pervasive SQL.
(I presume you will...
November 6, 2015 at 3:26 am
luhar.mitul (11/5/2015)
Greetings !
I need your help. I work on data-migration projects and I am responsible from getting data from legacy systems to SQL Server Database.
Presently, I am...
November 6, 2015 at 3:12 am
Other things to look at are to:
1. increase the frequency of the log backups to at least every 15 minutes and automate moving the log backups to another server. This...
November 3, 2015 at 3:09 am
Looking at this again, you could also try changing:
CONVERT(DATETIME,'2015-06-05T09:29:43',126)
to
'20150605 09:29:43'
October 27, 2015 at 6:07 am
I suspect the problem is to do with the datetime column RequestDate. About 3 years ago we had some problems moving a 1990's third party program, designed to work with...
October 26, 2015 at 3:34 pm
It looks as though you have precedence:
CASE
WHEN Opportunity IS NOT NULL THEN Opportunity
WHEN Campaign IS NOT NULL THEN Campaign
ELSE Account
END
Edit: Did not notice Phil's reply. His is probably better.
September 24, 2015 at 5:00 am
Manic Star (9/17/2015)
When...
September 21, 2015 at 10:53 am
This seems to produce the required results:
WITH NameGroups
AS
(
SELECT Name, Year, Sales
,(ROW_NUMBER() OVER (PARTITION BY Name ORDER BY year) - 1)/4 + 1 AS Grp
FROM #test
)
SELECT Name, Year, Sales
,DENSE_RANK() OVER (ORDER...
September 4, 2015 at 6:42 am
You may also want to look at tranactional replication.
August 26, 2015 at 5:31 am
This should get you started:
SELECT 'REVOKE '
+ P.[permission_name] COLLATE DATABASE_DEFAULT + ' ON '
+ QUOTENAME(S.name COLLATE DATABASE_DEFAULT)
+ '.' + QUOTENAME(C.name COLLATE DATABASE_DEFAULT)
+ ' TO ' + QUOTENAME(U.name COLLATE DATABASE_DEFAULT) +...
August 26, 2015 at 5:20 am
This will not help the OP but he may want to consider it in future.
I have a non-production server where the users have a habit of dropping DBs!
I have saved...
August 20, 2015 at 10:06 am
Despite using this forum for some time you still do not seem to know how to ask a question.
Please read the following:
You have been asked a number of questions and...
August 20, 2015 at 6:29 am
I am currently blocked from looking at the query plan but would make the following points.
The basic problem with queries involving remote tables is that the full table will be...
August 18, 2015 at 7:12 am
This may or may not help.
We have an ancient third party application which was updated a few months ago. The update managed to get rid of column permissions.
Running the following...
August 18, 2015 at 5:27 am
Viewing 15 posts - 646 through 660 (of 1,491 total)