Viewing 15 posts - 241 through 255 (of 506 total)
@Ld,
If you create the computed column in SQL or in the GUI the result is the same. To persist the computed column...
April 12, 2018 at 6:13 pm
CREATE TABLE #tApril 12, 2018 at 3:42 pm
The 2 tables don't have any data in common. That is, none of the ID values match from A to B. They don't have the same number of rows. What...
April 12, 2018 at 3:16 pm
Please post your sample data in a consumable format (script including create table statement with inserts).
April 12, 2018 at 12:02 pm
WHERE BO.LOGI1 = @mylogicVariable;
April 11, 2018 at 5:48 pm
April 11, 2018 at 3:27 pm
Create Table #t (April 10, 2018 at 6:36 pm
Try running SSMS as Administrator then connect to integration services.
April 10, 2018 at 6:17 pm
DECLARE @yearmonth char(7)='2017-01', @YmMinusYr char(7);
SELECT @YmMinusYr = Convert(char(7), DateAdd(yy, -1, Cast(@yearmonth+'-01' AS date)), 120);
SELECT @yearmonth ThisYear, @YmMinusYr Last year;
April 10, 2018 at 5:07 pm
April 10, 2018 at 1:10 pm
April 4, 2018 at 12:42 pm
Could you restate your question. I'm not sure what you mean by multiple backup files with unique name.
April 4, 2018 at 12:27 pm
I would have chosen H as DateCreated would tell you when the row was added but only if it is set properly as it has no default and is defined...
April 4, 2018 at 12:11 pm
March 29, 2018 at 2:13 pm
Access can run against SQL Server using linked tables union or passthrough queries. What version of Excel are you using? Check out this, this and
March 29, 2018 at 2:04 pm
Viewing 15 posts - 241 through 255 (of 506 total)