Viewing 15 posts - 856 through 870 (of 1,655 total)
First of all Books On line contains quite a lot of Tutorials and sample packages.
The next stop I would suggest is http://www.sqlis.com
Lot's of articles and samples about SSIS.
June 19, 2008 at 6:16 am
Dugi (6/4/2008)
interesting info, but how about SQL Server MVPs, how many of them!?
The latest number is 209, see here for all the names etc.
https://mvp.support.microsoft.com/communities/mvp.aspx?product=1&competency=SQL
June 19, 2008 at 2:00 am
Sorry, but UPDATETEXT is the correct answer, depracated or not.
Update .Write doesn't work for text columns.
June 16, 2008 at 4:53 am
Obviously the answer will always depend on the type of query you're running.
But if you're more interested in the theoretical scalability you can check http://www.tpc.org/ for benchmarks.
June 10, 2008 at 5:41 am
There are several options on how to do this. You might want to check out this article: http://www.sqlservercentral.com/articles/Datetime+Manipulation/61822/
or this one:
http://vadivel.blogspot.com/2007/04/find-missing-numbers-gaps-within-table.html
June 2, 2008 at 5:27 am
Sounds like a DNS problem to me. Check which DNS server is configures, which default gateway etc.
May 29, 2008 at 5:21 am
You can query the msdb database for the last backup of a database.
Something like this:
select top 1 name+'.bak' from msdb..backupset
where type = 'D' and database_name = MyDb
Order By backup_set_id
Type 'D'...
May 27, 2008 at 6:43 am
Why don't you just query the DMV sys.dm_db_index_usage_stats. It will show you which idexes have been used and how (Seek vs. scan)and even when it was used the last time.
Only...
May 27, 2008 at 6:20 am
The only option to do this is to create either a view, give your users read permission on the view and deny read permission on the table.
If you want to...
May 22, 2008 at 6:26 am
Ola is right.
I had the same issue on several machines and the hotfix solved the problem.
May 20, 2008 at 10:12 am
If you search around you will find several scripts which will KILL all ser connections to a database. Personally I prefer setting the database in single user mode and rollback...
May 20, 2008 at 10:09 am
fosco (5/20/2008)
Please what will the value 'OUTPUT' be?
Not sure if I understand you're question.
The stored procedure I provided will write the trace to one or more files. Other than that...
May 20, 2008 at 8:53 am
From last couple of days our production DB is running at 100% CPU usage, after going through profiler we are able to trace using Audit Login option that every fraction...
May 20, 2008 at 7:53 am
Creating a snapshot of 12 million rows can take quite long and like in your case can result in a timeout. You can change the profile of the snapshot agent...
May 20, 2008 at 6:35 am
Viewing 15 posts - 856 through 870 (of 1,655 total)