Viewing 15 posts - 631 through 645 (of 3,061 total)
ychen1214 (12/31/2011)
January 2, 2012 at 9:27 am
How about differential backups? if the issue is space the size of differential backups will follow the volume of data that actually changed on those particular databases.
For these low...
December 30, 2011 at 2:35 pm
How to: Check the ODBC SQL Server Driver Version (Windows)
SQL Server 2008 R2
Your computer may contain a variety of ODBC drivers, from Microsoft and from other companies. Use the Windows...
December 30, 2011 at 2:11 pm
Dev (12/30/2011)
PaulB-TheOneAndOnly (12/30/2011)
jr.sqldba (12/30/2011)
I have created database and enter the values in to that table.
and also perform the explicit transaction after that in another window i wrote the...
December 30, 2011 at 8:51 am
WangcChiKaBastar (12/30/2011)
but when we run the same query on SSMS its fine.
I ran profiler but didnt get much clue, Tlog is OK...
December 30, 2011 at 8:45 am
Saggy (12/30/2011)
How to migrate sql server database and all system databases from one server to another server?
Adding on Perry's comment.
Is this a plain "migration" as in hardware refresh, no SQL...
December 30, 2011 at 8:39 am
jr.sqldba (12/30/2011)
I have created database and enter the values in to that table.
and also perform the explicit transaction after that in another window i wrote the below steps
SHUTDOWN WITH NOWAIT;
GO
but...
December 30, 2011 at 7:23 am
Gianluca Sartori (12/30/2011)
PaulB-TheOneAndOnly (12/29/2011)
pandeesh (12/29/2011)
Any other suggestions welcome...
How about using coalesce?
create table #test(id decimal);
insert into #test values(1);
insert into #test values(2);
insert into #test values(3);
insert into #test values(4);
insert into #test values(5);
insert into...
December 30, 2011 at 7:17 am
how about replacing:
over (partition by account_number order by end_date asc )
by:
top 1 over (partition by account_number order by end_date desc)
December 29, 2011 at 1:40 pm
I remember having to do it a few years ago.
Didn't use a third party tool but a set of three stored procedures: sp_hexadecimal, sp_help_revlogin and a sligthly hacked version of...
December 29, 2011 at 1:13 pm
David Moutray (12/29/2011)
December 29, 2011 at 12:01 pm
Viewing 15 posts - 631 through 645 (of 3,061 total)