Viewing 15 posts - 2,146 through 2,160 (of 14,953 total)
Okay, it looks like what you need is to parse out any rows where Col01, Col02, etc., have a postal code in them. It can be any one of...
January 25, 2012 at 11:25 am
A common way to test if there's a row that exists in a sub-table is with an EXISTS statement.
They usually look something like:
Select
case
when exists
(select *...
January 25, 2012 at 11:22 am
If I follow your description correctly, you are pulling data into a staging table, then running this on the staging table in order to get the postal code out of...
January 25, 2012 at 10:26 am
Evil Kraig F (1/24/2012)
EDIT: I...
January 25, 2012 at 6:21 am
Are they equality tests? As in @Value = Column. Or are they range/inequality tests, like @Value > Column, or Column between @Value1 and @Value2?
January 25, 2012 at 6:15 am
I think I'd go the linked server route.
January 24, 2012 at 12:52 pm
Do you have a Where clause in your query? Is it against an encrypted column?
January 24, 2012 at 12:50 pm
I looked a little. See if this article helps: http://www.mssqltips.com/sqlservertip/1137/supporting-tables-for-sql-server-2005-style-maintenance-plans/
January 24, 2012 at 11:42 am
All of that is stored in msdb. Maintenance plans are stored as SSIS packages, which aren't particularly query-friendly in the way you're asking. They're stored in msdb.dbo.sysssispackages, but...
January 24, 2012 at 11:40 am
You'll have to create a formula. Multiply the hours by 60, sum them up, add in the sum for the minutes. That gives you minutes worked. Divide...
January 24, 2012 at 11:30 am
Is the relevant date and time in another table, like an audit log or something?
If not, you can't get data out of a database that was never put into it.
January 24, 2012 at 10:01 am
If you really are stuck with a cursor, try Static instead of Fast_Forward Read_Only. Static cursors use more resources in tempdb, but are often faster than other options. ...
January 24, 2012 at 6:25 am
SELECT CONVERT(DATE, CURRENT_TIMESTAMP)
January 23, 2012 at 2:20 pm
Alter table dbo.MyTable
add constraint DF_CurrentDate default(getdate()) on CurrentDate;
If I'm not mistaken, that should do what you need.
January 23, 2012 at 11:16 am
Any particular reason to use OpenXML instead of XQuery?
I'm not particularly familiar with OpenXML, but XQuery will get those values easily.
January 23, 2012 at 11:14 am
Viewing 15 posts - 2,146 through 2,160 (of 14,953 total)