Viewing 15 posts - 1,906 through 1,920 (of 13,469 total)
do you mean dynamically select a query and result set, and use SSRS to export it to doc/docX? if that's the question, i don't believe you can. i'm awful sure...
March 11, 2015 at 9:05 am
if the service is running, it's not possible to delete the master database either accidentally or on purpose; it has a file lock on it by the SQL Service.
if the...
March 11, 2015 at 6:22 am
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...
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...
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...
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.

March 10, 2015 at 8:34 am
BWFC (3/10/2015)
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...
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 =...
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...
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' )...
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...
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...
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...
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...
March 3, 2015 at 2:52 pm
Viewing 15 posts - 1,906 through 1,920 (of 13,469 total)