Viewing 15 posts - 2,596 through 2,610 (of 2,611 total)
Defining performance is really important. Most situations would be best suited by trying to run a benchmark of usual activity on your old server, and then do the same on...
February 2, 2007 at 7:04 am
You may need to go into the client configuration and configure an alias for your subscriber with the appropriate port number. Multiple instances varies the port number and sometimes this...
January 26, 2007 at 9:07 am
The 'GO' batch terminator is configurable at the client. Depending on what is running the statement, this may not be a valid terminator. The script should work without the GO's.
Your...
January 26, 2007 at 9:04 am
What is the data provider of your source? The error is indicating that you are using a provider that does not support query parameters.
One good way around this is what...
January 26, 2007 at 9:00 am
It may help to know more about the package, but so far the places to start have been covered.
- service packs need to be the same (and you have already...
January 26, 2007 at 8:39 am
The upgrade advisor / upgrade wizard for SQL Server 2005 will also upgrade Analysis Services and it will work on many Analysis Services 2000 cubes. If you go this route,...
January 26, 2007 at 8:30 am
@@Identity basically returns the identity value for the last record your spid inserted. So, if you were inserting records you need to deal with them sequentially:
DECLARE @ParentID INT, @ChildID INT,...
January 25, 2007 at 8:34 am
Space not being much of an issue these days, create and last modified user / date is something I require on every table. Why not have it? Someone will ask at...
January 25, 2007 at 8:19 am
I have also used the ActiveX script component in SSIS as a data source for consuming some oddly formatted files. So far, I have been amazed at the performance I...
January 25, 2007 at 7:55 am
Keep it simple. Just use MAX
SELECT COUNT(*) AS "COUNT"
, CAST(StartTimeOrdinal AS INT)
, CAST(PerformingDayOrdinal AS INT)
, MAX(Enrolled) AS Enrolled
FROM OpsSchedule WHERE PerformingDayOrdinal IS NOT NULL
GROUP BY StartTimeOrdinal, PerformingDayOrdinal
ORDER BY PerformingDayOrdinal, StartTimeOrdinal
If...
January 25, 2007 at 6:19 am
This is typically indicating a network connection error. The first thing to do is take as much ot of the picture as possible. If you can use terminal services or...
January 25, 2007 at 6:06 am
You may want to simplify this a bit by splitting the two actions. There are command line utilities that will copy a file from your hard drive to a CD...
January 22, 2007 at 1:29 pm
You will never run out of options on this one, you can use EXISTS / NOT EXISTS for these as well.
SELECT
H.[Employee Code]
, H.Income
, H.Tax
FROM
EmployeeSalaryHistory H
WHERE
NOT EXISTS(SELECT H2.[Employee Code] FROM EmployeeSalaryHistory...
January 22, 2007 at 1:25 pm
I don't mean to pick at this on you, but it sounds like you are a bit new at this and dynamic SQL is usually not a good place to...
January 22, 2007 at 12:40 pm
If I am following - you are running into the problem that the domain is stripped off the server login when the user is created for the database. This can be...
January 19, 2007 at 8:54 am
Viewing 15 posts - 2,596 through 2,610 (of 2,611 total)