Viewing 15 posts - 5,866 through 5,880 (of 10,144 total)
Stuart Davies (8/17/2012)
ChrisM@Work (8/16/2012)
August 17, 2012 at 8:46 am
sqlfriends@sql.com (8/17/2012)
Hi Experts;Good Thanks for all support
ChrisM : we don't have using any control to design this table.
Thanks
FAJ
What you have there is an EAV (entity-attribute-value) table. Simple-talk (site currently...
August 17, 2012 at 8:34 am
anthony.green (8/17/2012)
Change the function to return varchar(max) and have a str of varchar(max)
The function returns a maximum of 4757 characters (for a leap year). It's inefficient but works ok.
Try measuring...
August 17, 2012 at 8:02 am
Charmer (8/17/2012)
ChrisM@Work (8/17/2012)
Are you inserting new rows into a table or updating existing rows? It's not clear from your description.
yes i am inserting new rows by taking all the rows...
August 17, 2012 at 7:14 am
Are you inserting new rows into a table or updating existing rows? It's not clear from your description.
August 17, 2012 at 6:40 am
August 17, 2012 at 6:38 am
prads.cs (8/17/2012)
UPDATEtvLRF
SETHasMultiple = 1
FROM@tv_LicenseRenewalFee tvLRF
INNER JOIN (SELECTGroupCode, MIN(SUBSTRING(ClassificationCode,3, LEN(ClassificationCode))) AS Number
FROM@tv_LicenseRenewalFee
WHEREGroupCode <> (
SELECTGroupCode
FROM@tv_LicenseRenewalFee
WHEREHasMultiple = 1
)
GROUP BY GroupCode
HAVING...
August 17, 2012 at 5:28 am
Eugene Elutin (8/17/2012)
...
That will teach me to not try and answer questions before drinking coffee, thanks Chris.
Seeing your avatar, I wouldn't think that you are great coffee-lover. Are you sure...
August 17, 2012 at 4:30 am
HowardW (8/17/2012)
update xys set submitdate=NULL where id in ('1','2'.........'100')
I feel I must be missing something...
August 17, 2012 at 3:42 am
Lavanyasri (8/17/2012)
I have a column with date datatype. i updated the column with some date like 02-02-2012 00.00.000 ,for 100 orders Now i want to change the...
August 17, 2012 at 3:16 am
Phil Parkin (8/17/2012)
SELECT ... INTO
always creates a new table. When it creates that table, uses the data types of the source columns, but not primary keys...
August 17, 2012 at 2:55 am
Returning NULL if the delimiter isn't found simplifies the code considerably:
SELECT
[Room / Shelf],
[Room] = LEFT([Room / Shelf], x.pos-1),
[Shelf] = SUBSTRING([Room / Shelf], x.pos+1,8000)
FROM @ChemInventory
CROSS APPLY (
SELECT NULLIF(CHARINDEX('/', [Room /...
August 17, 2012 at 2:26 am
dwain.c (8/16/2012)
Lynn Pettis (8/16/2012)
Here is one for the do not hire list.Or it could be the needs much training list.
The quality of the hires will be roughly proportional to the...
August 17, 2012 at 2:10 am
Lynn Pettis (8/16/2012)
ChrisM@Work (8/16/2012)
Not sure of the name though. Symba is a bit silly, it’s a...
August 17, 2012 at 2:05 am
SQLRNNR (8/16/2012)
ChrisM@Work (8/16/2012)
Not sure of the name though. Symba is a bit silly, it’s a misspelling...
August 17, 2012 at 2:04 am
Viewing 15 posts - 5,866 through 5,880 (of 10,144 total)