Viewing 15 posts - 3,856 through 3,870 (of 11,678 total)
What kind of flat file? Delimited, fixed width?
Maybe one of the flat files has data that is too wide for the column AffiliatedID?
January 22, 2014 at 3:01 pm
It depends on how you want to use it I guess. It's about having a choice.
Each type of adaptor has its own strenghts and weaknesses. I've done tests where OLE...
January 22, 2014 at 1:51 pm
Perry Whittle (1/22/2014)
As far as I'm aware you cant. If you try to enable .NET role without internet access you have to use cmd line to disable online checks
I didn't...
January 22, 2014 at 10:59 am
Perry Whittle (1/22/2014)
January 22, 2014 at 10:32 am
kbhanu15 (1/22/2014)
TO avoid this issue any database setting to be change ?
i mean ( if we run the query 1st or 2nd time or 3rd time it should show...
January 22, 2014 at 5:34 am
This is an interesting article:
Does the SQL Agent Service Account Must be a SysAdmin?[/url]
It mentions the service account doesn't even need a SQL Server login.
I'm curious though under which account...
January 22, 2014 at 4:32 am
Another option is to have a first parameter which is just a text field.
Here you can enter your filter and the second parameter will be filtered using the text you...
January 22, 2014 at 3:52 am
This works fine:
DECLARE @test1 VARCHAR(10) = '€ 100.00';
DECLARE @test2 NUMERIC(10,2);
SET @test1 = RTRIM(LTRIM(REPLACE(@test1,'€','')));
SET @test2 = CONVERT(NUMERIC(10,2),@test1);
SELECT @test2;
If it doesn't work, check the regional settings.
January 22, 2014 at 3:37 am
TDP (1/22/2014)
If this were true, then the job would not fail giving the error 🙂
The server principal "Domain\SQLServerAgent" is not able to access the database "Database1"...
January 22, 2014 at 2:55 am
TDP (1/22/2014)
The job is executing a stored proc that is not in msdb anyway, thus would need more than permissions to msdb...
January 22, 2014 at 2:16 am
The service account will probably have permissions in MSDB, and maybe that is all it needs to run the job.
January 22, 2014 at 2:06 am
SQL Server has caching, but it is really strange that it goes from 2 minutes to subsecond performance.
You can expect some performance improvement, but that is fenomenal. Care to share...
January 22, 2014 at 2:01 am
TDP (1/22/2014)
I am running SQL Server 2012 ENT SP1.
The SQL Server Agent Service is running under account Domain\SQLServerAgent. Our SQL service accounts have no rights in SQL, not event...
January 22, 2014 at 1:58 am
The only issue I ever encountered while installing SQL 2012 was that I forgot to enable the .NET framework.
Error while enabling Windows Feature: Netfx3[/url]
I encountered issues though when upgrading to...
January 22, 2014 at 12:27 am
Viewing 15 posts - 3,856 through 3,870 (of 11,678 total)