PowerShell

Technical Article

RE: Cross tab

  • Reply

David,Let me explain my problem hereCREATE TABLE TEMP (ID INT, stdate DATETIME, CODE CHAR(10))INSERT INTO TEMP VALUES(1,'2004-04-01','TEST1') INSERT INTO TEMP VALUES(2,'2004-04-02','TEST1') INSERT INTO TEMP VALUES(3,'2004-04-03','TEST1') INSERT INTO TEMP VALUES(4,'2004-04-01','TEST2') INSERT INTO TEMP VALUES(5,'2004-04-02','TEST2') INSERT INTO TEMP VALUES(6,'2004-04-03','TEST2') INSERT INTO TEMP VALUES(7,'2004-04-01','TEST3') INSERT INTO TEMP VALUES(8,'2004-04-02','TEST3') INSERT INTO TEMP VALUES(9,'2004-04-03','TEST3') INSERT INTO TEMP VALUES(10,'2004-04-01','TEST4') INSERT INTO […]

You rated this post out of 5. Change rating

2004-04-07

Technical Article

Invalid text, ntext, or image pointer value

  • Topic

When running update text statement, Im having trouble tracking down why I get the following error;Server: Msg 7123, Level 16, State 1, Line 52 Invalid text, ntext, or image pointer value 0xFFFF2FA1B4000000DCC4080001001200. The statement has been terminated.I ran dbcc check db, check table and TEXTVALID with no errors.  I created a second table and copied […]

You rated this post out of 5. Change rating

2004-04-07

40 reads

Technical Article

RE: HTML Tags in Data -- I want to remove them

  • Reply

You likely need to do a little programming/scripting using a regular expression to remote the tags.  Suggest you do a web search for "regular expression remote html tags" and you'll find the re expressions you can use.Good luck,Pete

2004-03-31

Technical Article

RE: join on a table variable

  • Reply

Are you creating your "SELECT     COUNT(DISTINCT dbo.course_enrolments.student_fk) AS Expr1  FROM         dbo.course_enrolments INNER JOIN               dbo.Course ON dbo.course_enrolments.course_fk = dbo.Course.uid AND dbo.course_enrolments.courseversion = dbo.Course.version INNER JOIN                       @StudentDerived ON dbo.course_enrolments.student_fk = @StudentDerived.student_fk  WHERE     (dbo.course_enrolments.course_fk = @courseID)" as dynamic SQL and then using sp_executesql or EXECUTE then you won't be able to use table variables. What BOL […]

2004-03-29

Blogs

SQL Saturday Boston 2024 Slides

By

Thanks to everyone that came to my talks. Slides are below. Best Practices for...

Small Data SF 2024

By

I can’t remember how I heard about Small Data SF 2024, but it caught...

A New Word: Moledro

By

moledro – n. a feeling of resonant connection with an author or artist you’ll...

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