Viewing 15 posts - 286 through 300 (of 562 total)
As allready said, the splitter by Jef Modem is a very usefull tool in general and also for this situation.
In the example below I have removed the spaces in the...
February 11, 2016 at 9:41 am
I do use the following 'BLOB' of code to 'track' usage. (Edit : Sorry, tables only).
This is run repeatedly and shows the usage of tables between two calls.
Here the code...
February 11, 2016 at 6:43 am
Stix83 (2/11/2016)
here is my joining statement:
sELECT B.CONTACT AS CONTACT,
B.MAIN AS PHONE,
B.CELL AS CELL,
B.DATE_OF_CONTACT AS...
February 11, 2016 at 6:20 am
WhiteLotus (2/10/2016)
I am migrating database from server A to server B . The collation in Server A is SQL_latin1_general_CP1_CI_AS and server B is
Latin1_General_CI_AS
So the database from server...
February 11, 2016 at 5:17 am
Steve Jones - SSC Editor (2/9/2016)
February 11, 2016 at 2:06 am
ChrisM@Work (1/25/2016)
How can the code return incorrect results, Ben? Am I missing something here?
The name of the month is language dependend. This often leads to trouble.
When storing a date in...
January 25, 2016 at 10:05 am
Luis Cazares (1/25/2016)
the problem often relies on keeping the default (us_english)
I do strongly object to the notion that the default language is English.
I know in almost all science fictions...
January 25, 2016 at 9:58 am
asita (1/24/2016)
Can you please let me know the smart way of doing this? (below three statements into simple one statement) please help me
UPDATE dbo.ClnTrail
SET trailproposed_Weekno = '01 - 01/01/2016'...
January 25, 2016 at 9:23 am
TSQL Tryer (1/25/2016)
Hi,How do I get the header at the top of the file in a Select statement -
select '"BEN_CLAIM" "3P_RENT"' ,'','','',0,'' -- Same number...
January 25, 2016 at 9:11 am
Luis Cazares (1/25/2016)
Another option:
SELECT UPPER( REPLACE( CONVERT(char(11), GETDATE(), 106), ' ', '-'))
Be carefull with dates, very often the language or the regional settings are important.
For the solution of Luis (our...
January 25, 2016 at 8:54 am
A solution could be:
SELECT
listpos
, substring(str,1, PATINDEX ( '%:%' , str )-1) str
, substring(str, PATINDEX...
January 21, 2016 at 9:58 am
Grant Fritchey (12/10/2015)
December 10, 2015 at 8:03 am
select '"'+Word+'",' +' ' from Dictionary order by Word asc FOR XML PATH('')
My expectation is that this will work a lot faster.
Please do share...
December 10, 2015 at 7:29 am
Search on the forum for:
DelimitedSplit8K
Recipe:
Replace all chars/strings which are not a value with an 'X', or another character which is not used.
Use the DelimitedSplit8K function to split the string into...
December 10, 2015 at 6:47 am
rhans (12/9/2015)
Need help from SQL experts for my scenario. I have a Inventory table that has:
- 2 million current month transactions
- 38 million for previous months translations
I...
December 10, 2015 at 6:19 am
Viewing 15 posts - 286 through 300 (of 562 total)