Viewing 15 posts - 7,966 through 7,980 (of 13,876 total)
celine.godines (10/29/2015)
October 29, 2015 at 4:43 am
samot-dwarf (10/29/2015)
I miss a link to tip #1 and #2 (or a parent page with all SQL Prompt hints linked)
Try this.
October 29, 2015 at 4:07 am
celine.godines (10/29/2015)
I am doing some data gathering before 'the real deal', I am not a wiz on SQL, manage my way around but that's pretty much it, hence the use...
October 29, 2015 at 4:05 am
J Livingston SQL (10/29/2015)
see this article and read the comments from Jeff at the bottom of the article
Excellent link and way too many Jeffs getting involved there!
October 29, 2015 at 3:59 am
Alan.B (10/28/2015)
October 29, 2015 at 1:50 am
And here is part 2 again, for those people who prefer their SQL formatted 🙂
declare @object_name sysname
,@object_id int
,@SQL nvarchar(max);
select @object_name = '[' + object_schema_name(o.object_id) + '].['...
October 29, 2015 at 1:28 am
revanappa.shivanagi (10/29/2015)
Thanks Phil,I cant do find/replace 500 times.That why I am Searching for is there any way to Skip the case sensitivity in SSIS.
No.
Now I suggest you change your...
October 29, 2015 at 1:24 am
Don Shoemaker (10/28/2015)
October 28, 2015 at 11:28 am
celine.godines (10/28/2015)
All customers have different products and different Names/Values... (and not always 2 products and 6 names, it will varies)
I...
October 28, 2015 at 11:25 am
OK, I understand. But will there be the same number of columns for every customer, or will the number of columns vary depending on the number of products for each...
October 28, 2015 at 10:48 am
celine.godines (10/28/2015)
CustomerProductName ValueChargesNewCharges
13AZ 40005056
13BY 30023
13BX 50003536
13BW 16001312
13BV 107009392
13BU 7000109110
And would like to...
October 28, 2015 at 10:26 am
revanappa.shivanagi (10/28/2015)
In my SSIS package , I have changed one of table column name from upper case to lower case for Ex."EMPLOYEEID" to "employeeid".
After changing case i am facing an...
October 28, 2015 at 7:46 am
Thanks Steve, I didn't know about this. Very useful.
October 28, 2015 at 4:43 am
shkoli (10/27/2015)
[ManagementId] [int] NOT NULL,
[FTAManagementNo] [varchar](35) NULL
)
CREATE TABLE [dbo].[MgmtCountries](
[MgmtCountryId] [int] not null,
[CountryId] [int] null,
[ManagementId] [int] null ,
[FTAManagementNo] [varchar](35) NULL
)
i want to get only those ManangementId which is available...
October 28, 2015 at 1:14 am
Have a read here and see whether that helps you at all.
October 27, 2015 at 9:48 am
Viewing 15 posts - 7,966 through 7,980 (of 13,876 total)