Viewing 15 posts - 7,141 through 7,155 (of 7,636 total)
Derek Dongray (4/16/2008)
There was an error here...rbarryyoung (4/15/2008)
Join #t B ON ( a.id=b.id and a.date b.st
What should the line have been?
Darn angle bracket filters! (blankety-blank!)
Hope...
April 16, 2008 at 9:54 am
One thing that I should add, If you pay for an estimate or an assesment, then it is yours, not theirs. You can do what you want with it,...
April 16, 2008 at 9:42 am
I agree with Steve and Doug on this: A customer does not have to pay for anything that they have not explicitly agreed to pay for ahead of time.
April 16, 2008 at 9:38 am
I feel bad for the OP, but we can't really do much for them until they can post something that we can see. Maybe an attachment?
April 16, 2008 at 9:34 am
boazs (4/15/2008)
Thanks.:)
Glad I could help. Let us know how it works out.
April 16, 2008 at 9:30 am
Yeah, it's definitely going to the wrong directory.
April 16, 2008 at 7:57 am
FYI, it is ALWAYS possible to construct a mathematical expression that will fit ANY finite set of numbers. for instance:
WHERE (month(dob)-2) * (month(dob)-6) * (month(dob)-7) * (month(dob)-8) *...
April 16, 2008 at 7:55 am
You should try the query that I posted, it is highly parallel also.
If you need a working version of Jeff's query, here is one that I modified but is only...
April 16, 2008 at 7:23 am
Anybody leave part of this cow for me?
This seems to me to be the most obvious approach, though perhaps not the fastest (when I needed this kind of query to...
April 15, 2008 at 6:39 am
I agree with Matt. You cannot do expressions in an EXEC statement.
As a general rule only [font="System"]Select[/font] and the major DML statements can have actual scalar expressions. The...
April 14, 2008 at 5:29 pm
Hey Art, as long as you are here, ...
I notice that you post a lot of code on the forums, which is great, however, it would help some of...
April 14, 2008 at 5:13 pm
berto (4/14/2008)
If some queries run fast in SQL 2000 and very slow in SQL 2005 how we can be sure that our application will run without performance degradation after migration?
The...
April 14, 2008 at 5:02 pm
Try executing:
SET QUOTED_IDENTIFIER ON
GO
first.
Apparently, the author assumed this setting was already on, though it is not normally on and a bad practice in any event, IMHO.
April 14, 2008 at 4:55 pm
Actually, upon further reflection, it seems likely that you need to add your backup directory name to the DIRectory command:
Insert into #BakDir exec xp_cmdshell 'dir D:\BKUP\Demo /B'
declare @file varchar(max)
Select @File...
April 14, 2008 at 4:50 pm
Add the print statements and tell us what they say:
Insert into #BakDir exec xp_cmdshell 'dir /B'
declare @file varchar(max)
Select @File = FileName from #BakDir
Print 'Restoring from file:'
Print @file
Print '--======'
RESTORE DATABASE [Demo]...
April 14, 2008 at 4:43 pm
Viewing 15 posts - 7,141 through 7,155 (of 7,636 total)