Viewing 15 posts - 19,186 through 19,200 (of 26,490 total)
brij (8/14/2009)
I can create partition based on Month or day of the year. But I want partition based on...
August 14, 2009 at 11:06 am
You can actually find this in BOL (Books Online, the SQL Server Help System). You can access it from SSMS by pressing the {f1} function key.
here is the relevant...
August 14, 2009 at 10:57 am
Actually, in SQL Server 2005 this may work faster:
select
t.[name] TableName,
t.create_date,
t.modify_date,
sum(p.[rows]) RowCnt
from
...
August 14, 2009 at 10:26 am
hi_abhay78 (8/14/2009)
August 14, 2009 at 10:12 am
Not too hard, here is the code I came up:
select
Account,
sum(case when Type = 'A' then Amount else 0 end) as TypeA,
...
August 14, 2009 at 9:55 am
hi_abhay78 (8/14/2009)
First create or modify a job and run profiler at the background...
August 14, 2009 at 9:40 am
No website required. You can get all of this from BOL (Books Online, the SQL Server Help System). You can access it from SSMS by pressing the {f1}...
August 14, 2009 at 9:05 am
Gift Peddie (8/14/2009)
I think you may have missed the where clause in my LEFT JOIN example. All three of these queries will return the same result set. ie Customer records...
August 14, 2009 at 9:01 am
There may be another solution as well. Could you please post the DDL for the tables involved (not just the ones in the procedure), sample data for the tables,...
August 14, 2009 at 8:57 am
First, you may nneed a cursor. To really help you, we need your help. Please provide the DDL for the tables, sample data for the tables, expected results...
August 13, 2009 at 11:53 pm
There are numerous ways this can be accomplished. You may want to google Geographically dispersed clusters. There is software that will allow you do to this, but it...
August 13, 2009 at 11:47 pm
htt (8/13/2009)
As soon as you perform a new full backup, you have reinstated the log chain and all transactions are being captured
This is NOT always true. Couple of my...
August 13, 2009 at 11:15 pm
Only speaking for myself here, but I think others may agree; for me to leave SSC the sense of Professional Community that currently exists would have to leave the site....
August 13, 2009 at 11:08 pm
Let me think on that a bit. The first idea I had was to have you zip and upload the .dtsx package, but that may not work, even though...
August 13, 2009 at 10:57 pm
htt (8/13/2009)
Okay, here is a scenario for you.
At 12:10 PM Wednesday afternoon your server crashes and corrrupts your database forcing a restore. You attempt to restore from the full backup...
August 13, 2009 at 10:49 pm
Viewing 15 posts - 19,186 through 19,200 (of 26,490 total)