Viewing 15 posts - 6,601 through 6,615 (of 14,953 total)
Can you take the PG_STATUS out of the database and just calculate it at runtime?
Join the three tables together, where the scout status is not equal to 5, and select...
April 15, 2010 at 3:12 pm
You'll either need to predefine the value-column combinations, or use dynamic SQL, or use a name-value pair table.
If values will be turned into columns in a dynamic manner, you need...
April 15, 2010 at 3:07 pm
Roy Ernest (4/15/2010)
April 15, 2010 at 3:02 pm
You could assign a unique key to a checksum of all of the columns.
April 15, 2010 at 12:58 pm
Forgot one part. Add "ORDER BY number" between the Where clause and the For XML clause. It'll usually work without that, but isn't guaranteed.
April 15, 2010 at 12:50 pm
declare @a CHAR(10), @b-2 char(10);
SELECT @a = 'MIKE'
-- Encrypt
SELECT
(SELECT char( 255 - ascII(SUBSTRING(@a, number, 1)))
FROM Common.dbo.Numbers
WHERE number BETWEEN 1 AND LEN(@a)
FOR XML PATH(''), TYPE).value('.[1]','varchar(10)');
SELECT @b-2 = (SELECT char( 255...
April 15, 2010 at 12:46 pm
What are you trying to do here? I can't read that code well enough to tell what it's doing.
If you can describe what the end result is supposed to...
April 15, 2010 at 12:28 pm
That's correct. You're adding to the end of a full string.
You either need to set it to varchar, or turn off ANSI Padding.
April 15, 2010 at 12:26 pm
I'm renaming it so that applications don't have to have any changes made to them. With the way things are set up here, that's moderately important.
It also keeps the...
April 15, 2010 at 12:24 pm
jcrawf02 (4/15/2010)
Must I repeat the pythagorean theorem joke?
Yes, it's mandatory at this point.
April 15, 2010 at 11:56 am
Looks to me like you just need to make sure the login you're using can connect, and your connection string is set up correctly.
If it's more complex than that, what...
April 15, 2010 at 10:32 am
I'd replicate from Oracle to Oracle.
April 15, 2010 at 10:31 am
You'll have to create a custom role for that.
Add the ability to view system data, deny the ability to create/modify/delete objects.
April 15, 2010 at 10:30 am
WayneS (4/15/2010)
April 15, 2010 at 10:27 am
george sibbald (4/15/2010)
April 15, 2010 at 10:17 am
Viewing 15 posts - 6,601 through 6,615 (of 14,953 total)