Viewing 15 posts - 4,771 through 4,785 (of 8,761 total)
Grant Fritchey (8/11/2015)
Eirikur Eiriksson (8/11/2015)
0xC34F0xC350 Missed it:pinch::-D😎
... by that much.
It was truly a "near miss":-D
😎
August 11, 2015 at 6:51 am
Koen Verbeeck (8/11/2015)
Koen Verbeeck (8/11/2015)
jasona.work (8/11/2015)
Where are the balloons from the ceiling? Confetti?Cake?
This has been quite the disappointment.
I thought we all would get 50,000 extra points.
Ah well, up to...
August 11, 2015 at 6:44 am
0xC34F0xC350 Missed it:pinch::-D
😎
August 11, 2015 at 6:38 am
Koen Verbeeck (8/11/2015)
Only 10 posts to go...
Correction, only 7 posts to go...:-D
😎
August 11, 2015 at 6:23 am
Ed Wagner (8/11/2015)
TomThomson (8/10/2015)
SQLRNNR (8/10/2015)
centrifugeacceleration
Velocity
Inertia
August 11, 2015 at 5:41 am
Koen Verbeeck (8/11/2015)
ChrisM@Work (8/11/2015)
Koen Verbeeck (8/11/2015)
You mean something like this?
Seems like a very serious injury...
That's him! Very talented actor, not afraid to get down and dirty.
And despite his successes, he...
August 11, 2015 at 4:09 am
peter 82125 (8/10/2015)
Thanks! Where is that Help option located, please?
Few options in SSMS:
1) press ALT + H, Down arrow, Enter
2) Left click on the [HELP] menu and...
August 11, 2015 at 1:47 am
Quick suggestion
😎
USE tempdb;
GO
SET NOCOUNT ON;
declare @Users table(UserID int identity(1,1) primary key,Name varchar(50),Active bit);
declare @CreditCards table(IdCredicard int identity(1,1) primary key, UserID int,CardNo bigint,Active bit,Date_Created datetime);
insert into @Users(Name,Active)
select 'Name1',1 union all
select 'Name2',1...
August 10, 2015 at 10:44 pm
peter 82125 (8/10/2015)
August 10, 2015 at 10:32 pm
Further on the subject, what is killing the performance is most certainly the distinct sort and table scans for the xml subquery. Adding an index on InvoiceID, Row_Num and include...
August 10, 2015 at 10:25 pm
sandhuz24 (8/10/2015)
Still, I would like to know if it possible to optimise the query when reading entire table.Thanks
Quick thought, too much information missing, without it one is just guessing!
😎
Post the...
August 10, 2015 at 8:14 pm
jan.dewettinck (8/9/2015)
Not sure if the following link provides a better explanation.
https://msdn.microsoft.com/en-us/library/ms187928.aspx
I based my answer on the part about the style which says that the default is...
August 10, 2015 at 5:30 am
NLV (8/10/2015)
Thanks Erikson for your help.
You are very welcome
😎
August 10, 2015 at 4:22 am
Quick suggestion
😎
USE tempdb;
GO
SET NOCOUNT ON;
IF OBJECT_ID(N'dbo.test') IS NOT NULL DROP TABLE dbo.test;
GO
CREATE TABLE dbo.test (
action_id numeric,
action VARCHAR(20) NOT NULL,
action_by VARCHAR(20) NOT NULL,
action_date VARCHAR(20) NOT NULL
);
INSERT INTO dbo.test (action_id,action, action_by,action_date)
VALUES...
August 10, 2015 at 4:05 am
Viewing 15 posts - 4,771 through 4,785 (of 8,761 total)