Viewing 15 posts - 16 through 30 (of 56 total)
Hi Matt,
I resolved the problem using merge join.
There is a tutorial:
http://www.mssqltips.com/tip.asp?tip=1322
In order to use merge join, you have to sort the fields you are trying to match.
Can you...
September 15, 2008 at 12:16 pm
Hi Michael,
Thank you for your repsonse.
I resolved the problem using Dataflow.
Because there is no index set on the ID field, it is taking a long time to match those records...
September 5, 2008 at 2:28 pm
Thanks everyone,
I have a better understanding now.
I would like to know when we restore a full back up, we restore full LDF if our recovery model is "full". What is...
August 28, 2008 at 11:30 am
I found that it is the same deal when it comes to version controlling.
In order to run the package in SQL Server Agent, we have to store our package either...
August 27, 2008 at 10:12 am
Hi Greg,
Thanks for your help. I really appreciate that.
I followed the steps from http://www.mssqltips.com/tip.asp?tip=1180 to run my package from a file system in SQL Server Agent. I...
August 27, 2008 at 9:51 am
Hi Greg,
Previously, I couldn't manage to run SSIS package from a file location as a SQL Server Agent Job. That's the reason I need to deploy my package to msdb...
August 26, 2008 at 5:19 pm
Hi,
OK, I found the solution:
1.Store the result to an object variable from table1
2.Use Foreach Loop Container and set object variable as ADO object source variable and map a new variable...
August 26, 2008 at 10:46 am
Hi,
I found the ealier discussion
http://www.sqlservercentral.com/Forums/Topic233916-148-1.aspx
Basically the only version control option is:
1.Using SSMS Integration Services, export the package to file system.
2.Using BIDS, edit the package and save to...
August 26, 2008 at 10:37 am
OK.
I need to append to WEB.DB.dbo.USER_LIST table (Server: WEB User ID: WebUser Pwd: WebPass)
Reading records from LOCAL.DB.dbo.USER_LIST table (Server: LOCAL User ID: Local User Pwd:...
August 15, 2008 at 3:03 pm
Hi Eddy,
Thank you for your opionions. We also started using virtual server instance for DEVSQL.
Regards,
July 4, 2008 at 3:32 pm
Thanks Brian,
So, your suggestion is to create a different sql login for DBA not a Windows user when we are creating databases and objects.
We used to use 'BUILTIN\Administrators' credentials to...
June 11, 2008 at 12:03 pm
Hi Michael,
I guess, for 60 Clients and one processor server the "processor type" is cheaper than the "server + CALs type."
If we buy the per processor type license, are we...
April 4, 2008 at 3:03 pm
Thank you so much for all of you.
That was really helpful.
April 4, 2008 at 2:18 pm
Hi,
I missed all April's fools. Too bad it's fading. Haha.
Here is the answers:
Will the .NET application cover your license needs or not? Sorry didn't understand this one.
Will the users...
April 4, 2008 at 1:04 pm
EXEC master.dbo.sp_addlinkedserver @server = N'SERVER\DEV', @srvproduct=N'SQL Server'
GO
OR lets say your 'SERVER\DEV' has a private IP '192.168.0.100' and listening port '1115'
EXEC master.dbo.sp_addlinkedserver @server = N'192.168.0.100,1115', @srvproduct=N'SQL Server'
GO
(use...
April 4, 2008 at 12:52 pm
Viewing 15 posts - 16 through 30 (of 56 total)