Viewing 15 posts - 1 through 15 (of 39 total)
Kick-off Meeting - that's the one important meeting in any project. It is where all the parties gauge their expectations.
and you said this:
Sometimes I think the problems in software development...
April 14, 2016 at 1:20 pm
Same for me. There is a lot about SQL Server that I want to learn. The learning process is the easiest part because I have access to tools and resources....
April 8, 2016 at 1:38 pm
sorry, this is not a direct response to your question, but there's a good section about your question in the Red Gate book "SQL Server Transaction Log Management"
August 5, 2013 at 1:02 pm
You need the "Microsoft SQL Server 2005 Backward Compatibility Components" Feature Pack, you can find it here. I can't tell you which package to download because I don't know...
May 27, 2010 at 3:19 pm
I suggest that you rebuild all the packages from the ground up. Trust me on this one. I am currently migrating SQL Server 2000 DTS packages to SQL Server 2008...
May 27, 2010 at 2:33 pm
Try SQL Server Profiler, and see what the apps are doing.
February 22, 2010 at 7:46 pm
You can either query the Object Catalog View or the Information Schema View.
to return user tables and their columns:
-- Object Catalog
SELECT T.NAME AS
, C.NAME AS [COLUMN NAME],...
February 10, 2010 at 4:15 pm
You don't really want to "import" all the SQL Server Instances in your *laptop*. You probably just want to register the sql servers in the SSMS installed on your laptop.
Try...
February 2, 2010 at 12:29 pm
What are you trying to import now? Please clarify.
February 2, 2010 at 12:11 pm
You can start from here: http://www.microsoft.com/learning/mcp/mcts/sql/2008/default.mspx
March 18, 2009 at 11:43 pm
Using the Report Manager, you can Upload the .rdl file. Make sure that you set the data source correctly.
February 12, 2009 at 9:37 am
#1 Lesson Learned from this:
When it's boiling inside your head because you cannot solve a problem, stay away from the keyboard and from the people around you...
thanks for the help...
October 20, 2008 at 10:22 pm
Mea Culpa....
My Bad, did not mean to be sarcastic.
Let's go back to business guys...let's forgive and forget....
I am trying to do something like the extended procedure xp_dirscan. Is there...
October 19, 2008 at 3:10 am
Viewing 15 posts - 1 through 15 (of 39 total)