Viewing 15 posts - 1,336 through 1,350 (of 7,498 total)
why isn't there just a simple index on both date columns in the order you need them ?
create index X_yourtable_dates on yourschema.yourtable (date1, date2);
might be another solution to avoid...
June 26, 2012 at 7:51 am
according to BOL this should work with SQL2008..
select *
, SUM ( TranAmount ) over ( partition by Account order by Account, datetrans, uniqueID ) as RunTranAmount
from yourtable
order by Account,...
June 20, 2012 at 1:52 pm
durai nagarajan (6/20/2012)
hope i'll change cluster user access to public rather than sysadmin.any points about 3 & 4.
cluster service account only needs "login" on your sqlserver instance. That's all.
We remove...
June 20, 2012 at 5:36 am
yes, no.
We run cluster services using its own service account and use sqlserver (domain) service accounts for every sqlserver service.
June 20, 2012 at 5:19 am
please don't use the C$ share for this purpose ! It is supposed to be for administrative stuff.
Create your own backup share on your target server, grant the service account...
June 20, 2012 at 5:15 am
wendy elizabeth (6/19/2012)
[dbo].[AT_Pln] can...
June 20, 2012 at 5:09 am
chris-320654 (6/19/2012)
June 19, 2012 at 12:47 pm
all.
have a look at Features Supported by the Editions of SQL Server 2008
June 18, 2012 at 11:47 pm
Koenraad Dendievel (6/18/2012)
This is not a replacement to track complete history of changes (who dunnit) but more a 'do i have the latest version'-tool(replication/synchronisation)...
June 18, 2012 at 6:46 am
Nice example of change tracking.
You mention
is designed to work with Sync Services for ADO.NET.
but the article lacks the example or refs to do so.
e.g. as a starting...
June 18, 2012 at 3:22 am
I like the solution Gail handed over.
Especially because it lets you identify the bogus information easily using "WHERE HardwareNumber is NULL".
So, unless you really need this column to be...
June 17, 2012 at 11:55 pm
You're encountering one of the "little" mishaps known with msaccess db.
did you try something like this ?
Declare @mycounter int = 999999900
UPDATE tblAsset
SET HardwareNumber = @mycounter
, @mycounter +=...
June 17, 2012 at 9:36 am
Kick out ALL udfs you use and write the proper query to fetch the data you aim for.
Without a sqlplan, it is up to our imagination to figure out...
June 17, 2012 at 9:25 am
:blush: regarding HP, I can only tell you should upgrade practically all drivers before throwing it into production.
We learned that the hard way when we were forced to move...
June 15, 2012 at 7:59 am
Until now, the obvious question has not been raised :
Is your SQLInstance on the latest service pack ? How to obtain ...
Select Serverproperty('ProductVersion') as ProductVersion
...
June 15, 2012 at 5:46 am
Viewing 15 posts - 1,336 through 1,350 (of 7,498 total)