Viewing 15 posts - 7,246 through 7,260 (of 7,636 total)
A view is a Virtual Table, so what I am saying os that my view IS your second table.
April 1, 2008 at 8:44 pm
Can't you do it with Maintenance Plans?
April 1, 2008 at 3:43 pm
tosscrosby (4/1/2008)
April 1, 2008 at 3:34 pm
You can do it with a View pretty easily:
Create View vwTable1 AS
Select USER_ID, VAL_1 - VAL_4 AS [Total]
From Table1
And it's always up-to-date.
April 1, 2008 at 3:20 pm
Enbee (4/1/2008)
can anybody help me out in this. At least tell me is it possible or not.
Yes, it is possible with a CTE (assuming you mean code references).
April 1, 2008 at 11:06 am
Maybe I'm missing something here: How many Subscribers per Publication do you have?
April 1, 2008 at 10:57 am
Jeff Moden (4/1/2008)
You still haven't answer my other suggestion... instead of the DBA having to learn C# or whatever, what about the developers learning good T-SQL?
Why not both? I...
April 1, 2008 at 10:54 am
This works:
Select Replace(Convert(varchar(22), DateAdd(d, -1, DateAdd(m, 1, getdate())), 102), '.', '')
April 1, 2008 at 10:37 am
Maurizio79 (4/1/2008)
I want to use more distribution server, that is what i consider "scale out".
But there is that possibility in sql2k5? That is, can...
April 1, 2008 at 10:11 am
Yes, but if you look at it, you will see that the file name is a variable: [font="System"]@file[/font]. You can write SQL procedure code to change it as needed.
April 1, 2008 at 9:53 am
Maurizio79 (4/1/2008)
Yes, we use republishing on the same distribution machine, that is: the online database exposes a publication, and the subscriber is the distribution database. then...
April 1, 2008 at 8:33 am
Fact and Dimension are terms from Data Warehousing where Dimensional Modeling of data is used instead of Relational Modeling. It's still understandable to SQL DBA's and even do-able in...
April 1, 2008 at 8:25 am
Hmm, upon further review, I don't think that my first reply actually answered you question. Part of the problem for me is that [font="Courier New"]@FromTvsFormNo[/font] and [font="Courier New"]@ToTvsFormNo[/font] ...
April 1, 2008 at 8:08 am
SQLZ (4/1/2008)
ALTER INDEX ALL ON table_name REORGANIZE;
command on all tables that are more than 10% fragmented.I know I can use sys.dm_db_index_physical_stats to get...
April 1, 2008 at 1:22 am
Here's one way:
CREATE PROCEDURE [dbo].[SearchSP] ...
April 1, 2008 at 1:11 am
Viewing 15 posts - 7,246 through 7,260 (of 7,636 total)