Viewing 15 posts - 4,456 through 4,470 (of 5,111 total)
January 18, 2017 at 3:51 am
Helpful article. I had thought about using a share to back up before, but this article has made me start looking into it finally (while I have the time as...
January 18, 2017 at 2:56 am
January 18, 2017 at 1:53 am
sp_msforeachdb accepts parameters as well, there's no need for your own cursor.
This would work:exec sp_msforeachdb 'USE [?];
IF DB_ID(''?'') != 2 BEGIN
SELECT ''[?]''...
January 17, 2017 at 9:17 am
Phil Parkin - Tuesday, January 17, 2017 8:44 AMModify is unticked in this screen shot.
I thought that at first, but that's Lowell's...
January 17, 2017 at 8:48 am
DamianC - Tuesday, January 17, 2017 2:00 AMThanks, code markers seem to be working as previous now
I can't see to see...
January 17, 2017 at 3:57 am
I want to delete that one.But i don't find option.
After I read Jeff guide given...
January 17, 2017 at 2:29 am
Could you not just have the value as a computed column, then there is no need to update, as it's calculated? For example:USE DevTestDB;
GO
CREATE TABLE Dates...
January 17, 2017 at 2:21 am
Type Value
10 0
20 ...
January 17, 2017 at 2:06 am
You're not using the CTE as it was intended. it''s there to build you a real table you can do a proper join on, as your data is truly relational.
January 17, 2017 at 1:59 am
January 16, 2017 at 2:00 pm
Now looking at the post here Luis has given you the answer you need. You need the use the CTE he gave you. I just tried it, and it worked...
January 16, 2017 at 1:52 pm
This is something you were asked to do last time, I have done it for you this time, but PLEASE provide CREATE and INSERT statements when asking questions. Considering that...
January 16, 2017 at 1:28 pm
January 16, 2017 at 9:10 am
January 16, 2017 at 8:14 am
Viewing 15 posts - 4,456 through 4,470 (of 5,111 total)