Viewing 15 posts - 1,906 through 1,920 (of 13,460 total)
you'd have to add something to the table ; either a new column of type datetime, plus a trigger to always populate it on update, or a column of type...
Lowell
March 11, 2015 at 6:06 am
ok , the issue is this is one of those file swhere there's layers of data;
three from your screenshot:
OHD record
HDR record
DTL record(s) that are related to the HDR row above...
Lowell
March 11, 2015 at 5:50 am
yes, it's certainly possible.
i was thinking import down bloew but you mena tto export.
you want to select distinct provider, base don NPI number, as oneexport, adn a seperate export for...
Lowell
March 10, 2015 at 1:35 pm
try both slash r and slash n.
open the file in notepad++, which can give you the exact ascii character it is terminating in.

Lowell
March 10, 2015 at 8:34 am
BWFC (3/10/2015)
Lowell
March 10, 2015 at 8:31 am
this is a great example of using the wrong datatype. you have to jump through extra hoops to get data done right.
you'll have to convert to time or datetime, add...
Lowell
March 10, 2015 at 8:12 am
most files end in slash r if they came from unix/other systems, or slash n if they came from windows.
try changing your bulk insert to use those:
\n = vbCrLf =...
Lowell
March 10, 2015 at 6:54 am
bcp cannot help. bcp bulk loads data...it cannot execute each row as if it were a command.
open the file in SSMS and execute it instead. you might need to insert...
Lowell
March 10, 2015 at 6:48 am
each database is seperate, so you need to explicitly add thelogin as a user to the other database
IF NOT EXISTS(SELECT * FROM sys.server_principals where type_desc='WINDOWS_LOGIN' AND name = 'omh\srinathp' )...
Lowell
March 10, 2015 at 6:47 am
what does "still not working" mean?
is the end user using SSMS? queries? is there a specific error message?
rereading your original post, you said it's happening in one database only, so...
Lowell
March 10, 2015 at 5:42 am
to view the table structure, you want to GRANT VIEW DEFINITION TO SomeUser instead of db_owner
that effectively allows them to see sys.tables/sys.columns, etc...all the metadata.
it lets them see procedure and...
Lowell
March 10, 2015 at 5:24 am
a practitioner could have more than one location; you know, he works at Baptist East, Baptist North and Baptist South, so that would be normal to see the same provider...
Lowell
March 9, 2015 at 2:36 pm
i just used this powershell script, that i found after investigating your request
http://blogs.metcorpconsulting.com/tech/?p=343
i had to find and replace wierd left and right double quotes with normal double quotes to make...
Lowell
March 3, 2015 at 2:52 pm
adding some background, because i didn't know what 610 did, let along as it pertains to availability groups
http://sqlblogcasts.com/blogs/simons/archive/2010/11/17/trace-flag-610-when-should-you-use-it.aspx
Thanks to Marcel van der...
Lowell
March 3, 2015 at 1:09 pm
to find the percentile, you need the age, gender and BMI. then you could use a lookup table.
Body mass index-for-age percentiles: Boys, 2 to 20 years

Lowell
March 3, 2015 at 1:00 pm
Viewing 15 posts - 1,906 through 1,920 (of 13,460 total)