Viewing 15 posts - 2,191 through 2,205 (of 2,339 total)
This will get you the last backup by type:
SELECT D.name, B.type, MAX(B.backup_finish_date)
FROM sys.databases D
LEFT JOIN msdb.dbo.backupset B ON D.name = B.database_name
GROUP BY D.name, B.type
ORDER BY D.name, B.type
This may...
June 30, 2014 at 12:03 pm
Yes, that IS possible, but highly unlikely.
It appears that the original designer of the database named all of the ID fields in all of the tables the same. ...
June 10, 2014 at 11:48 am
A calculated column is likely the best solution here.
May 13, 2014 at 12:54 pm
lkennedy76 (5/13/2014)
no, you can only replicate to Enterprise \ Enterprise.
Uh, this is completely untrue.
The distributor cannot be an earlier version than the publisher, but that's about it.
Currently I have...
May 13, 2014 at 11:02 am
isuckatsql (5/12/2014)
http://www.sqlservercentral.com/Forums/Topic1568938-3412-1.aspxThis above thread explains why i am going down the trigger route.
Ok, Then what are you stuck on? This thread explains it pretty well.
isuckatsql (5/12/2014)
May 12, 2014 at 11:14 am
isuckatsql (5/12/2014)
May 12, 2014 at 9:54 am
See this link.
http://www.sqlservercentral.com/scripts/Date/68389/
A calendar table will probably work well for this use.
May 1, 2014 at 1:30 pm
Please run these separate queries.
sp_configure 'min server memory (MB)'
GO
sp_configure 'max server memory (MB)'
GO
April 14, 2014 at 10:31 am
A key piece of information is missing. From the article you referenced, is this a 32 bit version running on 64 bit Windows?
Ok, I will give you that. You...
April 14, 2014 at 10:17 am
I have turned on AWE and set my limit from 0-6Gigs. Still I top out of 3.8 gigs.
If this is a 64 bit machine, what did you turn on AWE?
How...
April 14, 2014 at 9:51 am
In the article, it states:
For a named instance, we typically only require two commands, because there isn't a case where a client is just connecting to the name of the...
March 24, 2014 at 9:58 am
You are concatenating the string incorrectly.
Change the last line to:
where CLAIMNO like Convert(VARCHAR(20), Getdate(), 112) +'80' + Right('000' + @operator, 3) + '%'
March 4, 2014 at 9:38 am
What is the error you are getting? That may help.
Also, it looks as if you are trying to use Dynamic SQL
March 4, 2014 at 9:25 am
If this is a one time export, have you tried going from Progress to Excel/Text/Access/etc. and then going into SQL?
February 17, 2014 at 5:06 pm
Correct. But.
I prefer three separate triggers (Ugh!) for task such as this. To me, it's easier to maintain. And it's also easier to sort through the...
February 17, 2014 at 5:03 pm
Viewing 15 posts - 2,191 through 2,205 (of 2,339 total)