Viewing 15 posts - 3,736 through 3,750 (of 9,643 total)
As Bru commented on your other post of the same topic, without more information it is hard to give you anything but simple best practices.
Make sure you have...
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
November 25, 2009 at 8:38 am
IF UPDATE fires if a value is sent for the column even if is has not changed. Try this:
IF OBJECT_ID('dbo.temp') IS NOT NULL
BEGIN
...
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
November 25, 2009 at 8:27 am
GilaMonster (11/25/2009)
As your log file is very huge, and it is required to Truncate the...
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
November 25, 2009 at 8:05 am
I'm going to agree with Lowell and Jason on this one. Especially the part about not giving restore rights. If they restore over top of the existing database...
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
November 25, 2009 at 7:43 am
Great Jonathan. That's the blog post I've been working on for a couple weeks as I figure it all out:-D
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
November 24, 2009 at 6:54 pm
I had the general idea right, just the implementation wrong.
Try this:
SELECT
*
FROM
#frUser_Copy
WHERE
[UserName] LIKE '%[^a-z0-9]%'
Unless you have a case-sensitive collation then the a-z will work for any alpha characters including...
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
November 24, 2009 at 4:17 pm
How about something like this:
/*
Set up test table and data
*/
IF OBJECT_ID('dbo.#test') IS NOT NULL
BEGIN
DROP TABLE #test
...
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
November 24, 2009 at 3:18 pm
What do you mean by special characters?
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
November 24, 2009 at 2:34 pm
Glad I could help. Had to do that with some columns I was importing in one of my processes, so I had experience with it. Hope you don't...
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
November 24, 2009 at 2:32 pm
I haven't had an issue with the "Deleted" rows in FoxPro using the OLE DB Driver. At least not that I am aware of. I'll have to double...
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
November 24, 2009 at 1:46 pm
I'm with you when it comes to FoxPro. Have you tried doing a conversion at the source? Cast(column as new datatype). This may work. Are you doing...
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
November 24, 2009 at 1:11 pm
I don't really know dreamweaver but it seems to me the issue must have something to do with the way you are passing the date variables. Are you using the...
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
November 24, 2009 at 1:06 pm
Thanks for taking the steps to check on Barry, Bob. Once again a sign of community not Forum.
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
November 24, 2009 at 9:13 am
GilaMonster (11/24/2009)
Why are you using the...
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
November 24, 2009 at 9:09 am
Never having built a scheduling app, I'm not sure what the best way would be. I would likely do something with a structure like this:
CREATE TABLE [dbo].[calendar](
[the_date] [datetime] NOT...
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
November 24, 2009 at 9:07 am
Viewing 15 posts - 3,736 through 3,750 (of 9,643 total)