Viewing 15 posts - 7,156 through 7,170 (of 9,643 total)
The only way I know other than OR'ing is a different select for each column like:
Select A from table where A is null
Select b from table where B is null
...
I...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 21, 2008 at 5:32 am
I'm not sure what you are trying to do.
If the transformation or source has and error and you have configured the error output to redirect row the row SHOULD be...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 20, 2008 at 2:51 pm
It really sounds like a permissions error to me. Can the users who cannot run the report run the query directly using SSMS or Access?
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 20, 2008 at 2:43 pm
What column has the 2 "squares"? Odds are they are carriage return & line feed. You could use Replace to remove them.
Again, if you provided a sample file...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 20, 2008 at 2:42 pm
Would this work?
[font="Courier New"]CREATE FUNCTION spf_IdHierarchy(@Id INT)
RETURNS XML
AS
BEGIN
DECLARE @ret XML;
WITH IdHierarchy (Id, IdLevel)
AS
(
SELECT @Id Id, 1 IdLevel
UNION ALL
SELECT tob.ParentId, IdLevel+1
FROM dbo.TreeObjects tob...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 20, 2008 at 2:21 pm
Could you attach a single file to the thread to work with?
It should be fairly straightforward with a flat file source with "##" as the column delimiter and the XML...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 20, 2008 at 2:13 pm
Is there a value for the maximum file size?
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 20, 2008 at 1:57 pm
Could you or someone translate the error message to English?
I think it says that the execution of the dataset failed because it couldn't connect and that by default SQL Server...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 20, 2008 at 1:43 pm
SQL Server Agent jobs are protected by SQL Server security. From BOL:
Members of the SQLAgentUserRole, SQLAgentReaderRole, and SQLAgentOperatorRole fixed database roles in msdb, and members of the sysadmin fixed...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 20, 2008 at 1:37 pm
Are you talking SQL Server 2005 or 2008? I don't think that 2.0 is required for 2008, but it is for 2005.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 20, 2008 at 1:23 pm
You can't use Set @var = column without a table reference. You want something like this:
[font="Courier New"]SELECT TOP 1
@shiftout = ISNULL(S.shift, 0),
@operator_num = ISNULL(S.operator, ''),
@pack_num =...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 20, 2008 at 12:32 pm
If you need to be able to recover to a point in time your database(s) should use the Full recovery model and you should be doing regular log backups, obviously...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 20, 2008 at 11:44 am
If you cannot get a log backup from the current log then as far as I know you cannot get the data from 12:30 to 1:00. It will need...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 20, 2008 at 9:43 am
Outlook has to be installed using the SQL Server service account and have a profile for that account. So you need a domain account for SQL Server to send...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 20, 2008 at 9:40 am
Ahhh. I have done similar using a script component. It seems to work fairly well. It is a bit of a performance bottleneck because it has to...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 20, 2008 at 9:38 am
Viewing 15 posts - 7,156 through 7,170 (of 9,643 total)