Viewing 15 posts - 1,066 through 1,080 (of 1,241 total)
Not enough information here, but I can guess that this query would benefit from a filter by date on table B. (At the least).
----------------------------------------------------
June 6, 2013 at 11:16 am
I would think the agent credentials are used and not necessarily overridden by something else on the SSIS package.
----------------------------------------------------
June 6, 2013 at 11:11 am
You may need to specify the extension of the file in the file name. Also it appears you are recreating the job everyday, If the job with that name already...
----------------------------------------------------
May 23, 2013 at 11:55 am
Wondering if this got resolved. If so can you share how? thanks.
----------------------------------------------------
May 17, 2013 at 4:04 pm
How you define your partition is partly if not fully influenced by business logic. If a sale has a 30 day return period then you can create each partition in...
----------------------------------------------------
May 17, 2013 at 3:46 pm
Create the dimension tables. What if you want to know what stores generated no sales in some particular time frame?
----------------------------------------------------
May 17, 2013 at 3:34 pm
With the ODD numbers, how is 7,5,3 related. Did you miss 7 is related to five?
thanks
----------------------------------------------------
May 16, 2013 at 3:37 pm
So you are adding back records to the student table that you think should be there. Could it be the students table was archived somewhere else and the history table...
----------------------------------------------------
May 16, 2013 at 3:32 pm
If your goal is just to keep the two tables in sync you could just use transactional replication from the source to the subscriber (whichever server is which). if they...
----------------------------------------------------
May 15, 2013 at 4:34 pm
You could add a checksum column on to apply to the columns wher you think the changes may occur. This will identify your row Id's that are out of sync....
----------------------------------------------------
May 9, 2013 at 11:02 am
Check the default language of the login accessing the data for your report. British English and English will interpret '08-01-2013' in different ways.
----------------------------------------------------
May 9, 2013 at 10:50 am
Where you trying to move the data using a linked server connection? You can map the SQL logins in this way using ( I don't mean the Windows logins).
----------------------------------------------------
May 8, 2013 at 4:48 pm
I, personally, would change datatype in the table.
Use a bit of caution, this may affect other views and stored procedures that use this column. They may, for instance, be...
----------------------------------------------------
May 8, 2013 at 11:02 am
If working with a large data set, the convert function in the where clause will slow things down as compared to having a datetime column. It may be beneficial to...
----------------------------------------------------
May 7, 2013 at 12:16 pm
In your query you are casting as decimal(18,2). Are your numbers always going to be whole numbers?
The following example
select PATINDEX('%[^0-9]%', '1234234.20')
does not return zero.
----------------------------------------------------
May 7, 2013 at 12:09 pm
Viewing 15 posts - 1,066 through 1,080 (of 1,241 total)