Viewing 15 posts - 1,936 through 1,950 (of 8,731 total)
jasona.work (11/1/2016)
Ed Wagner (11/1/2016)
Luis Cazares (11/1/2016)
crookj (11/1/2016)
djj (11/1/2016)
Revenant (11/1/2016)
Ed Wagner (11/1/2016)
Alan.B (11/1/2016)
djj (11/1/2016)
Luis Cazares (11/1/2016)
Ray K (11/1/2016)
ResistanceRebellion
Jedi
academy
Apprentice
Sorcerer
Wizard
prestidigitator
Magician
Illusion
Mysterio
Rey
November 1, 2016 at 12:45 pm
crookj (11/1/2016)
djj (11/1/2016)
Revenant (11/1/2016)
Ed Wagner (11/1/2016)
Alan.B (11/1/2016)
djj (11/1/2016)
Luis Cazares (11/1/2016)
Ray K (11/1/2016)
ResistanceRebellion
Jedi
academy
Apprentice
Sorcerer
Wizard
prestidigitator
Magician
November 1, 2016 at 12:32 pm
If you have 9 million rows, int can handle them perfectly. Unless you have a random sequence or something like this that might need to have always 10 digits (even...
November 1, 2016 at 10:09 am
Decimal and numeric are synonyms in SQL Server. It doesn't matter if you choose one or the other, although it's a good practice to be consistent.
On the other side, why...
November 1, 2016 at 9:37 am
Go to the forum settings http://www.sqlservercentral.com/Forums/EditForumSettings.aspx
And all the way down, there are the date and time settings. Check that you have the correct timezone and play with the checkbox that...
November 1, 2016 at 9:10 am
It would be of some help if you post the code you used to grant permissions (with names changed).
It would also help if you post if you got any messages...
November 1, 2016 at 8:44 am
First of all, this code seems to be MySQL. This is a SQL Server site, which means that most of us work primarily with that product. I can only give...
November 1, 2016 at 8:33 am
N_w (11/1/2016)
It's very sad you think my question is a school homework. I'm new in DB world and I set up a linux box at...
November 1, 2016 at 7:40 am
Sean Lange (10/31/2016)
jasona.work (10/31/2016)
Ed Wagner (10/31/2016)
Sean Lange (10/31/2016)
jasona.work (10/31/2016)
ChrisM@Work (10/31/2016)
Sean Lange (10/31/2016)
ChrisM@Work (10/31/2016)
Sean Lange (10/31/2016)
Ed Wagner (10/31/2016)
ThomasRushton (10/31/2016)
Wryan138 (10/30/2016)
October 31, 2016 at 1:37 pm
Of course, if you're just going to use the second delimiter, a faster approach is available. But I'm sure that you want something more flexible.
ALTER FUNCTION dbo.SubstringIndex2(
...
October 31, 2016 at 1:22 pm
I might play with some possibilities, but here's an option that doesn't need concatenation.
IF OBJECT_ID('dbo.SubstringIndex') IS NOT NULL
DROP FUNCTION dbo.SubstringIndex
GO
CREATE FUNCTION dbo.SubstringIndex(
...
October 31, 2016 at 12:52 pm
This sounds a lot like homework and we don't do homework in here.
We can guide you, but you need to give specifics.
Be sure to read the articles on my signature.
You...
October 31, 2016 at 12:26 pm
whereisSQL? (10/31/2016)
Ed Wagner (10/31/2016)
Luis Cazares (10/31/2016)
Manic Star (10/31/2016)
Ed Wagner (10/31/2016)
Grumpy DBA (10/31/2016)
djj (10/31/2016)
RemingtonShaver
Beard
Lady
Marmalade
Jam
Pearl
Black
October 31, 2016 at 9:37 am
Sean Lange (10/31/2016)
Luis Cazares (10/31/2016)
Although, if the row count is really low on that table, here's an alternative.
SELECT TOP ISNULL( MAX(CONCAT(i.BatchId,+'_'+ i.Company+'_',ltrim(rtrim(i.[Accounting Period]))+'_nondlo.saf')), 'None')
FROM [Havebury].[RepairInvoice].[RepairInvoiceNONDLO] i;
Thank Luis. I thought...
October 31, 2016 at 8:48 am
Viewing 15 posts - 1,936 through 1,950 (of 8,731 total)