Viewing 15 posts - 901 through 915 (of 13,445 total)
look at the metadata that is returned from eXEC sp_tables_ex MyAlienServer
it should return a list of items, and you could potentially drill down from there.
June 13, 2016 at 10:42 am
briancampbellmcad (6/13/2016)
SELECT 100.00, 54215 UNION ALL
SELECT 125.00, 53252 UNION ALL
SELECT 110.00, 63225...
June 13, 2016 at 9:43 am
because there is a one to many relationship between charges and payments, you cannot join the tables directly, i think you need to join the summerization of those tables instead....
June 13, 2016 at 9:08 am
twin.devil (6/13/2016)
Quick suggestion: you can add 6 days and you will get the end date as well.
SELECT [date] as StartDate, DATEADD(dd,6,[date]) as EndDate
FROM CTE_DatesTable
OPTION (MAXRECURSION 0);
twin.devel nailed it, and...
June 13, 2016 at 6:58 am
Sean Lange (6/10/2016)
LOL. Maybe we discount all aspects of t-sql so everybody can be a winner?!?!?!?!? :-D:-D:-D:-D
yay! everyone gets a ribbon for interviewing!
June 10, 2016 at 1:58 pm
jujusa2016 (6/9/2016)
Hi,i have a similar problem. can you let me know how you resolved this issue.
post a new thread with details about what you are trying to do;
you'll get the...
June 9, 2016 at 1:36 pm
Translate.google.com (Swedish detected)
RGP is an international consulting company that offers qualified consulting services in Finance & Accounting, Human Capital, Information Management and Supply
Chain. We help our customers to...
June 9, 2016 at 12:29 pm
you need to have an explicit ORDER BY in your query. otherwise, it's coincidence or a crapshoot.
SQL server does not have a concept of order in a table.
SQL will...
June 9, 2016 at 9:07 am
stn11 (6/8/2016)
NOT WORKING.User can still see ALL
i would guess your user is a sysadmin, by mistake or due to mutliple roles.
easy to check:
select IS_SRVROLEMEMBER('sysadmin','mydomain\lowell')
June 8, 2016 at 8:33 pm
GilaMonster (6/8/2016)
June 8, 2016 at 11:23 am
import wizard is probably dropping and recreating the tables;
the existing table says NOT NULL,
but whatever the wizard creates allows nulls.
pretty easy to check, compare the table definitions.
June 8, 2016 at 11:10 am
TexasJohn (6/8/2016)
The catalog is wrong and the DSN file Schedule64 was saved to the Z drive as well.
saved to file? i am pretty sure you need a system...
June 8, 2016 at 11:07 am
TexasJohn (6/8/2016)
June 8, 2016 at 10:58 am
mapped drives like the z: drive are per user.
if you run xp_fixeddrives, do you have a Z:\ drive?
June 8, 2016 at 10:36 am
Welsh Corgi (6/8/2016)
I queried the source table and there is only one record with value of the primary key.
This does...
June 8, 2016 at 9:22 am
Viewing 15 posts - 901 through 915 (of 13,445 total)