Recursive CTE

Technical Article

RE: DTS disconnected edit: The system cannot find the file specified

  • Reply

Disconnected edit will check the connections in the package before the dialog opens. You probably have a connection that references a file that can't be found. Maybe a UDL file or something?Why do you need to use disconnected edit? The "Properties" and "Workflow Properties" dialogs for the ActiveXScript task should give you all you need. 

You rated this post out of 5. Change rating

2005-05-02

Technical Article

DateTime Conversion

  • Topic

I currently, have a field in a table that is a numeric field = 20030104 - I need to convert this to a date field = 01/04/2003 - what is the proper syntax for use in a select statement?Note that I am creating a table and I tried to change the field type to datetime, […]

You rated this post out of 5. Change rating

2004-11-12

2 reads

Technical Article

RE: SQL getting slower and slower

  • Reply

I second Allen's questions.   And yes, the hyperthreading is the reason for the 4 cpu's in task manager.When I first took this job I had a server do the same thing.  They were restarting it to get it going again.  You probably have a bottleneck somewhere.  It could be caused by hitting the knee in […]

You rated this post out of 5. Change rating

2004-02-24

Technical Article

RE: Spilt string into seperate fields

  • Reply

Phill,Some inline views may help simplify it:select     Account,     Address1 = substring(address, 1, delimpos1-1),     Address2 = substring(address, delimpos1+1, delimpos2-delimpos1-1),     Address3 = substring(address, delimpos2+1, delimpos3-delimpos2-1),     Address4 = substring(address, delimpos3+1, delimpos4-delimpos3-1),     Address5 = substring(address, delimpos4+1, address_len-delimpos4) from (     select *, delimpos4=charindex(';', address, delimpos3+1)     from (         select *, delimpos3=charindex(';', address, […]

You rated this post out of 5. Change rating

2004-02-23

Technical Article

RE: Syntax problems

  • Reply

Hi Lars,Below is the corrected syntax.declare @UnitWeight as Real,@fVal as Realset @UnitWeight = 1set @fVal=0SELECT @fVal=SUM(isnull(FVALUE,0))  from ITEMSET @UnitWeight = @fVal Pls check it out.Nitin 

You rated this post out of 5. Change rating

2004-02-09

Blogs

Deleting Old Local Git Branches–#SQLNewBlogger

By

I had a lot of local branches for a repo (actually a few repos)....

Use Your Voice

By

If you want more of a career and less of a job, one thing...

Real-World SQL Mastery: Your Hands-On, Mess-Free Sandbox

By

Are you ready to take your SQL skills from theoretical to tactical? If you've...

Read the latest Blogs

Forums

7 sept, scheduled book

By philip.scott

Comments posted to this topic are about the item 7 sept, scheduled book

7 sept, schedlued article

By philip.scott

Comments posted to this topic are about the item 7 sept, schedlued article

6 sept, published book

By philip.scott

Comments posted to this topic are about the item 6 sept, published book

Visit the forum

Question of the Day

Azure Data Lake Storage Gen 2

Azure Data Lake Storage Gen 2 is built on ...?

See possible answers