Viewing 11 posts - 31 through 41 (of 41 total)
Sorry I may not have been clear in my last post.
Use the VPC image to practice disaster recovery scenarios.
Set up some replication scenarios.
Setup some linked severs
Practice What-ifs
Cheers
August 11, 2010 at 8:11 pm
1. Install SQL Server on a Virtual PC.
2. Backup you VPC image.
3. Learn SQL Server
4. Deliberately blow up you VPC image and then try to recover it.
If you can't recover,...
August 11, 2010 at 7:36 pm
Create Table #Temp
(
NewID int identity(1,1),
<various fields from other table>
);
Insert into #Temp
Select * from <other table>
delete from <other table>;
insert into <other table>
select coalesce(RecordID, newID) As ID, <other fields>
from #Temp;
drop...
August 10, 2010 at 10:44 pm
Try aggregating the result set
Select field1, field2, count(field)
from
table
where some condition = whatever
group by field1, field2
August 2, 2010 at 1:29 am
If God had meant us to play soccer, he wouldn't have given us arms. 😛
March 1, 2010 at 8:46 pm
SQLExcel is quite good. It's free.
It allows you to create queries similar to MS Access query builder, and you can save the queries in a network location for other people...
February 10, 2010 at 11:05 pm
Check the following -
triggers
jobs that run stored procedures
VB code that "cleans up" data
Transactions that rollback.
Isolate when the data is changed.
To do this:
Run a trace while...
February 10, 2010 at 10:39 pm
Alcohol - its not just for helping ugly people get laid.
Buy him a beer and ask him a few questions regarding major issues. Don't exactly suck up to the guy,...
January 22, 2010 at 1:59 am
Nice work!!!
I have been using this tool, xSQL Script Executor. It's freeware - so the price is right.
It allows you to batch your scripts together in projects and target multiple...
July 30, 2009 at 8:06 am
Hi,
You can create a before and after dump of the objects in the dat base and compare what has changed.
See below.
or SQLDiff does the job pretty well but I am...
April 13, 2009 at 8:53 pm
Hi,
You can write code in C# or VB.Net to view retrieve data from AD via a web service.
Connect to the web service as the report datasource
Jamie
January 8, 2009 at 10:15 pm
Viewing 11 posts - 31 through 41 (of 41 total)