Viewing 15 posts - 16 through 30 (of 46 total)
Do you have non numerical values in table s?
August 27, 2010 at 4:58 pm
Try googling "CAST SQL" or "CONVERT SQL"
You should be able to just copy and paste the codes and replace the column names.
August 27, 2010 at 4:31 pm
PackagePassword property of the Execute Package Task is supposed to take care of that
I'm assuming you are refering to and have already tried this?
Password
If the child package is password protected,...
August 27, 2010 at 3:59 pm
Oops, it seems like you have the opposite problem.
Right click on the job and open the properties.
Go and edit the job step where the package is being executed.
Go to Execution...
August 27, 2010 at 3:54 pm
I ran into the same issue and the following steps worked for me.
Right click on the job and open the properties.
Go and edit the job step where the package is...
August 27, 2010 at 3:51 pm
Same result as TakeITeasy, but using a derived table.
SELECT*
FROM(
SELECT ROW_NUMBER() OVER (PARTITION BY id ORDER BY adate desc) AS ROW,
id,
amount,
adate
FROM @t
) T
WHERE T.ROW = 1
August 27, 2010 at 11:44 am
If you have a static table for qualifiers, you can create a script that selects the fields with the delimiter and qualifiers.
SELECT fn_GetFieldWithDelimiter(Column1, 'Column1') + fn_GetFieldWithDelimiter(Column2, 'Column2') + ...
FROM...
August 27, 2010 at 9:38 am
I see...
I'm guessing you have a config table with ColID, IsQualified, Qualifier columns, and within the CLR you'll be doing a look up by ColID?
August 26, 2010 at 11:21 am
Have you considered using bcp utility?
August 26, 2010 at 10:38 am
You can use ROW_NUMBER() with PARTITION clause.
August 26, 2010 at 10:23 am
I believe the web page can't insert while T1 is still open because of index locks. T1 should only be doing page locks (depends on your existing row vs inserted...
August 25, 2010 at 6:33 pm
Both are still true by default.
However, there are way to explicitly prevent them from happening.
SQL Server has no multi-version consistency model, which means that "writers block readers and readers block...
August 25, 2010 at 6:02 pm
I can take a stab at it, althougth I've never needed to predict performance improvements per hardware upgrades...
I would start by making sure all the proper indexes are present. (I...
August 24, 2010 at 3:59 pm
Environment: SQL Server 2008 R2, running in a hosted virtual machine. 4 GB ram.
Does the 4 gb belong to the server hosting the virtual machine or to the virtual machine?
I...
August 24, 2010 at 3:35 pm
Try using UNC path instead of F:\
August 24, 2010 at 10:39 am
Viewing 15 posts - 16 through 30 (of 46 total)