Viewing 15 posts - 46 through 60 (of 214 total)
The data will be used by 1 or 2 persons for about a month and then a small dataset will be extracted from this and only that will be used. ...
November 4, 2019 at 12:25 pm
I have a database with no compression on the tables(source). I want to create a blank database(destination) where I can create the tables with "data_compression = Page" and then Insert...
November 4, 2019 at 1:13 am
Thanks! I forgot about Try_cast .... Need to start using the new functions.
July 5, 2019 at 11:25 am
thanks, I will look into merge replication.
June 21, 2019 at 6:05 pm
I wpuld like to get the following columns DC, prepaid, collect, WMItem, ItemDescription on the same row by Hdrid + RID. I'm not sure if this is clear or...
April 2, 2019 at 8:17 pm
Point taken...please see data below.
Create Table dbo.MyTable(ID int, HdrID int, RID int, WmItem varchar(50), ItemDescription varchar(150), DC varchar(50), Prepaid varchar(50), Collect varchar(50))
Go
INSERT INTO MyTable (ID,HdrID, RID, Wmitem,ItemDescription,DC,Prepaid,Collect) VALUES...
April 2, 2019 at 4:51 pm
This is what worked for me below. There were some rows with the month names as values ie "FEBRUARY".
Try_Convert(varchar,Try_Convert(date,[date_From], 101), 103) as Date_To2
October 18, 2018 at 1:45 pm
October 18, 2018 at 11:06 am
October 18, 2018 at 10:53 am
error msg:
Incorrect syntax near 'partition'
With CTE
as (
select *, row_number() over (partiton by HdrID , TabName order by HdrID) as RN
from xlshdr_EC
May 24, 2018 at 3:12 pm
I want all the columns... This will only return Hdrid and tabname, right?
May 24, 2018 at 2:24 pm
April 13, 2018 at 3:43 pm
April 13, 2018 at 12:03 pm
Viewing 15 posts - 46 through 60 (of 214 total)