Viewing 15 posts - 7,141 through 7,155 (of 8,753 total)
srikanth.baskaran (9/7/2014)
Im new to sql server and got stuck in the following .
Ive a stored procedure A which has data has a result of split function from a column...
September 7, 2014 at 9:26 am
charipg (9/7/2014)
how to reduce the cost of clustered index insert ?any suggestions pls?
Quick thought, it's likely that this is not a problem of any sort, if the action is...
September 7, 2014 at 3:10 am
lvbntapasvi (9/6/2014)
I am new to SSIS, and have started using it from the past 3 weeks. I have a task where in I am supposed to access the flat...
September 7, 2014 at 3:05 am
There is a more efficient method of solving this problem by partitioning the set on the log-in-out action. When a driver is logged in, it increments the login sequence by...
September 7, 2014 at 12:29 am
mario17 (9/5/2014)
Hi,I thought it's easy but somehow got lost, what is the good way to insert that bloody Comma intelligently, depending if any of var value is NULL.
This is...
September 6, 2014 at 2:40 pm
Here is another addition to the code, identifying the gaps more efficiently.
😎
USE TESTDB;
GO
;WITH BASE_DATA AS
(
SELECT
ST.STG_ID
...
September 6, 2014 at 12:53 pm
Not much of a change needed from last time, adding a second conditional in the last part to allow for missing HardDrink did the trick.;-)
😎
USE tempdb;
GO
CREATE TABLE #TEMP (UserName varchar(20),Drink...
September 6, 2014 at 9:10 am
ChrisM@Work (9/5/2014)
Eirikur Eiriksson (9/5/2014)
ChrisM@Work (9/5/2014)
Meatloaf (9/3/2014)
I trying to figure out the logic to add a number to the end of an ID to create a series.
For example, I have an...
September 6, 2014 at 7:03 am
Grant Fritchey (9/5/2014)
So, Eirikur, if you used DATE instead of DATETIME would that also solve the issue? Just asking. I don't know MySQL from MyElbow.
It is more a question of...
September 6, 2014 at 6:15 am
Quick question, can you post the two execution plans?
😎
September 6, 2014 at 3:49 am
More for fun, I'm tossing three more spanners in the works
😎
USE tempdb;
GO
/********************************************************************
Sample data
********************************************************************/
DECLARE @SAMPLE_DATA TABLE
(
SD_ID INT IDENTITY(1,1) NOT NULL PRIMARY KEY CLUSTERED
...
September 6, 2014 at 3:14 am
Viewing 15 posts - 7,141 through 7,155 (of 8,753 total)