Viewing 15 posts - 91 through 105 (of 4,814 total)
Okay, but that doesn't tell me anything about the exact how, nor does it solve the need to change the connection manager for the Flat File Source. Just telling me...
August 25, 2020 at 1:05 pm
If you are using Lookup to get multiple values, that's the wrong tool for the job. Also, how were you planning to display the multiple results you were expecting? If...
August 21, 2020 at 3:13 pm
What about INFORMATION_SCHEMA.COLUMNS or sys.columns ? Do you not have access to either of those? It just seems to me that those would make it far easier than trying to...
August 21, 2020 at 2:59 pm
SSIS and SSMS are in two different categories where connectivity is concerned. SSMS has that import ability at only the most basic level, and can't be effectively optimized, whereas SSIS...
August 21, 2020 at 2:55 pm
I am in the process of converting an access query to T-SQL. There is an IIf statement which I am having trouble translating.
SUM (LOTOSMIS_ACC_TYPE.sing_ind * LOTOSMIS_RET_DAILY.grs_amn *
iif( gm_cd in...
August 21, 2020 at 2:45 pm
Hi,
Currently i having SSRS hosted in ASP NET Web Applications Portal.
It will connect to my SQL Server Stored Procedure for query records.
The issues is, when the month range...
August 21, 2020 at 2:39 pm
I'd very much favor a nightly job... might want to investigate "Automate", which can make automating a nightly web-site download into a piece of cake... It's not free, but it...
August 13, 2020 at 3:54 am
Well. with a billion rows, an insert might have to also compete with other processes that may hold locks on the table. It's not really a "simple insert" when the...
August 13, 2020 at 3:41 am
Yep... there's more than a few details missing here... no table description, and no description of the "why" behind doing all those individual OPENROWSET selects. As there's no description of...
August 13, 2020 at 3:35 am
I'm pretty sure that's not an option, ... although I'm certainly willing to be proven wrong.
August 12, 2020 at 1:22 am
I'm not aware of any settings related to the nature of the OLEDB connection, but you can always search Google and see what you can or can't find, ... and...
August 12, 2020 at 1:16 am
FYI, the IIF function became available in SQL Server 2012. I don't recall hearing much about it back then, so I would imagine it may not be all that well...
August 10, 2020 at 1:59 am
Apparently, I was unaware there was such a version of SSMS that can debug a sproc... which version is that?
August 10, 2020 at 1:55 am
Why not just UNPIVOT, as shown here in a CTE:
Both work. The tally based is probably more efficient depending on scale. It didn't occur to use a tally...
August 7, 2020 at 6:18 pm
Why not just UNPIVOT, as shown here in a CTE:
CREATE TABLE dbo.ProductOrders (
ProductCategory varchar(5) NULL,
ProductSubCategory varchar(5) NULL,
[Total Orders Placed in North America] int NULL,
[Total Orders Placed in...
August 7, 2020 at 2:28 pm
Viewing 15 posts - 91 through 105 (of 4,814 total)