Viewing 15 posts - 2,206 through 2,220 (of 2,356 total)
This may be the issue:
WHERE ID = @codeCnt;
Something tells me that the value of ID does not correspond to the value of @codeCnt
ID is an identity. How many times...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
July 3, 2014 at 10:00 am
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...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
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. ...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
June 10, 2014 at 11:48 am
A calculated column is likely the best solution here.
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
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...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
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)
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
May 12, 2014 at 11:14 am
isuckatsql (5/12/2014)
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
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.
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
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
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
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...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
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...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
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...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
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) + '%'
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
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
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
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?
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
February 17, 2014 at 5:06 pm
Viewing 15 posts - 2,206 through 2,220 (of 2,356 total)