Viewing 15 posts - 271 through 285 (of 7,168 total)
sku370870 (2/11/2016)
CREATE TABLE #tblProjects(
ProjectID int,
Project varchar(50)
...
February 11, 2016 at 4:16 pm
Could be lots of things...this is a such a common class of problem Microsoft posted a KB article:
SSIS package does not run when called from a SQL Server Agent job...
February 11, 2016 at 3:43 pm
mikefle (2/11/2016)
We have a number of processes where files are sent to...
February 11, 2016 at 3:32 pm
You should always be OK truncating a target staging table at any time. That is what staging tables are for.
It sounds like you should create a staging table on your...
February 11, 2016 at 6:06 am
Here is the logic to find the fiscal calendar year for those days at the beginning of January that are part of the last week in the previous year. The...
February 10, 2016 at 10:19 pm
Microsoft only officially supports 2 versions back, so from SQL Server 2012 that would be back to SQL Server 2005. I see you are running with version 8.0 in your...
February 10, 2016 at 8:04 pm
Here is a CLR string splitter from Adam Machanic. Original blog post.
----------------------------------------------------------------------------------------------------------------------------------------
-- drop objects
IF EXISTS ( SELECT *
...
February 10, 2016 at 8:00 pm
Hugo Kornelis (2/10/2016)
True. And one might debate whether or not an interval that ends before it even starts is able to overlap with other intervals or not.
I think the answer...
February 10, 2016 at 7:50 pm
February 10, 2016 at 7:44 pm
Ed Wagner (2/10/2016)
Orlando Colamatteo (2/10/2016)
Luis Cazares (2/10/2016)
micang (2/10/2016)
Orlando Colamatteo (2/9/2016)
February 10, 2016 at 7:27 pm
antonela (2/10/2016)
I found the solution at this link too:
But is it some way to test how many records return the stored procedure?I need to transfer data...
February 10, 2016 at 7:02 pm
below86 (2/10/2016)
February 10, 2016 at 3:44 pm
Change this
Parameters|Variables|Param Direction
0|User::Id|Input
to this
Parameters|Variables|Param Direction
@id|User::Id|Input
February 10, 2016 at 2:52 pm
Luis Cazares (2/10/2016)
micang (2/10/2016)
Orlando Colamatteo (2/9/2016)
February 10, 2016 at 11:44 am
A shared database where the guest user is granted execute permission to your function will be a clean solution transparent to all logins in the instance, even new ones. Synonyms...
February 10, 2016 at 8:01 am
Viewing 15 posts - 271 through 285 (of 7,168 total)