Viewing 15 posts - 16 through 30 (of 187 total)
No, it would just be two data sources joined together via a lookup.
January 26, 2011 at 4:34 pm
You need to find out what the processes are that are running on your SQL Server during the time when it is 100% (if possible). Use sp_who2 or...
January 26, 2011 at 3:47 pm
sqldba_icon (1/26/2011)
January 26, 2011 at 2:57 pm
SSIS seems to be as good an alternative to linked servers as anything, since you can have multiple datasets from differing sources.
Openrowset if you have to keep it...
January 26, 2011 at 2:46 pm
Using your code as the base, the easiest way that I can think of to do this is using the Out-Datatable function that Chad Miller wrote and is out at...
January 26, 2011 at 12:09 pm
I am not sure what you are asking, but you are right SSIS is not backwards compatible. That should not impact how you run a package through Powershell,...
January 26, 2011 at 11:49 am
I realize this is a couple of months out now but here is a good article for executing an SSIS package remotely via powershell.
Obviously you just end up calling dtexec...
January 26, 2011 at 8:54 am
We have been running on SP2 on our dev environments for about 2 months now and on our production environment for about a month and have not come across any...
January 26, 2011 at 7:40 am
I see what you are looking for here. I think the SMO route actually might be better for you then, and here is a link that describes how to...
January 26, 2011 at 7:06 am
First question is do you have a backup? If so, restore it run CheckDB and figure out where these 824 errors are coming from.
If you do not, here...
January 25, 2011 at 2:55 pm
Determining the SQL Agent job information for a failed job is basically as easy as running a query against msdb.dbo.sysjobhistory where the run_status = 0 and then pulling out the...
January 25, 2011 at 2:14 pm
In powershell you really don't exactly have to run the query against the server, since you have those properties available in different ways.
For instance, this script will go find your...
January 25, 2011 at 1:41 pm
It is definitely a good idea to limit SQL at least a little when it comes to memory, because it will truly take every ounce that you give it and...
November 30, 2010 at 3:53 pm
I just took your last DDL and replaced the final select with this
SELECT Distinct ROW_NUMBER() OVER(PARTITION BY re.AthleteGuid ORDER BY a.DateOfBirth DESC) AS rn,
r.Guid as RegistrationID
,a.Guid as AthleteID
,a.Firstname as FName
,a.LastName...
April 13, 2010 at 2:08 pm
It is surprising that it would only return a few records and still cause you problems, but that does not make it impossible by any stretch. It depends...
April 13, 2010 at 7:35 am
Viewing 15 posts - 16 through 30 (of 187 total)