testing

Technical Article

SQL Stack dump errors

  • Topic

Hi All, My SQL Servers started throwing the stack dumps since yesterday. It is dumping stacks of some of the system processes. All jobs execute properly. here is the dump. ERROR : net_readdata: Process 4968 generated fatal exception c0000005 EXCEPTION_ACCESS_VIOLATION. SQL Server is terminating this process. DUMP : ( Providing only part of the dump […]

2005-03-31

88 reads

Technical Article

RE: String Concatenation with Nulls and Spaces

  • Reply

How about this?select Ltrim(Isnull(first_name,'') + ' ') +          Ltrim(Isnull(middle_name,'') + ' ') +          Ltrim(Isnull(last_name,'') + ' ') +          Ltrim(Isnull(suffix,'')) as FullName 

2005-03-22

Technical Article

RE: Week Ending Dates

  • Reply

set datefirst 1   -- start weeks on mondays select  datecolumn from myTable where datepart(dw, datecolumn) = 5 Have a look in BOL at DATEPART for further info on datefunctions./Kenneth 

You rated this post out of 5. Change rating

2005-03-03

Technical Article

RE: Start & monitor a job to completion using T-SQL?

  • Reply

Below you will find my enhancement of Dave's stored procedure. This stored procedure will allow us to create SQL Server jobs but have a third party vendor solution run them. In the code below, I question why I have to have the WAITFOR DELAY. I found that with Query Analyzer, I am able to start […]

2005-02-21

Technical Article

RE: Partitioning Tables

  • Reply

Hi,Partitioning view is really a good option. but while implementing in our scenario we are facing some problems such as we cannot create index on the partitioned views as it gives some error saying that "underlying tables have some constraints" and even we had the triggers on the table which we have decided to split […]

2005-02-14

Blogs

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...

Snowflake + Azure blob

By

Let’s go back to data platforms today and I want to talk about a...

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