Viewing 15 posts - 301 through 315 (of 623 total)
While the IT has a backup system in place
I though multiple backup systems would break the backup chain?
August 3, 2012 at 12:10 pm
Thanks capn. I am going to look at Mr Celko's approach with the Months table since it may greatly simplify matters.
August 3, 2012 at 8:02 am
I'm fascinated.....I am working with Lynn's code.
Say I wanted certain clients those whose ClientID was < than 3.
Clearly I can add any conditions to the final SELECT statement but performance...
August 2, 2012 at 6:14 pm
Yes exactly like that. Thanks (again) ColdCoffee.
My comment about leap years was clearly non-sensical given my requirements.
July 31, 2012 at 8:48 pm
Also I might try experimenting with putting your join criteria in a proper join statement between the two tables.
See how long a SELECT takes when joining: Air code to follow.
SELECT...
July 31, 2012 at 7:34 pm
I faced a similar issue recently when trying to insert records into a linked server. I ended up creating a stored procedure on the linked server to do the insert....
July 31, 2012 at 7:22 pm
Thanks for your response.
I have a domain account setup as the execution account (not the service account).
If I create the subscription I can enter this execution account and password. If...
July 24, 2012 at 9:19 am
Is using BETWEEN to be avoided? I don't expect my criteria to ever have a time component.
If I use the the DATE datatype in my historical table and then convert...
July 17, 2012 at 6:15 pm
If you are using identity fields as keys in your new schema you may want to explore the
SET IDENTITY_INSERT statement so you can insert explicit values.
July 17, 2012 at 5:10 pm
Thanks to you both. Lynn's code looks like a solution to the problem I posted. I am going to use the data structure suggested by Celko, using start and end...
July 16, 2012 at 8:43 am
You need to configure your DesinationConnectionFlatFile to use the variable.
View the properties of the destination file connection manager. (F4 key, don't double-click)
Set the 'connection string' property using the expressions property....
July 3, 2012 at 1:41 pm
>>Then you can use Bitmap.SetResolution to set your images to at least 300 DPI.
Does anyone know how this is done? Is this a server side setting or is it report...
July 3, 2012 at 9:40 am
Thank you, appreciate the help.
June 29, 2012 at 4:40 pm
My expected results are:
1
2
A
B
NULL
I want to return any data that is not a question mark.
June 29, 2012 at 4:33 pm
Viewing 15 posts - 301 through 315 (of 623 total)