Viewing 15 posts - 1,891 through 1,905 (of 13,469 total)
well, a web.config file or application.config, if it was using a SQL login, might have something like this in it:
<connectionStrings>
...
March 16, 2015 at 12:52 pm
senthil.k (3/16/2015)
Can you send me the SQL script for calling a EXE from SQL server . I have tried to use xp_cmdshell from my stored procedure . But it...
March 16, 2015 at 9:43 am
also how many VLF's are there?
run DBCC LOGINFO on your Sharepoint database; you might need to reduce them.
March 16, 2015 at 8:03 am
kevaburg (3/16/2015)
roger.price-1150775 (3/16/2015)
Why are you renaming the files ?
If it's to ensure a file is only processed once...
March 16, 2015 at 6:30 am
as far as i know sp_send_DbMail requires email addresses int he correct format; it will not work with an operator name.
all my SQLAgent my operators point to sqlAlerts@mydomain.com, which is...
March 13, 2015 at 8:15 am
i beleive groups are a function of the mails erver, which generates individual copies of the email to people assinged tot eh group that the smtp alias points to;
i know...
March 13, 2015 at 7:51 am
also
b.field1 LIKE 'ABC'
is exactly the same as
b.field1 = 'ABC'
maybe you meant
b.field1 LIKE 'ABC%' --starts with
or
b.field1 LIKE '%ABC%' --contains
March 13, 2015 at 7:46 am
my knee jerk reaction would be to handle nulls for inequalities and exists, like this...
does this get expected data with this change?
WHERE
b.field1 LIKE 'ABC'
AND b.field2 BETWEEN GETDATE() -...
March 13, 2015 at 7:44 am
do any of those fields have nulls in them?
i think the "not in" portions can doink things up, right?
OR {NULL} NOT IN ('1', '2', '7', 'B')
...
OR {NULL}NOT IN ('CO','LT','B7')
March 13, 2015 at 7:36 am
that string is the base64 conversion of some string or value; i recongnize the format and the double equal signs at the end.
i tried running it through an online decoder...
March 12, 2015 at 3:37 pm
i don't know how others do it, but i have a few tables i use for replacements;a table with random values and numbers, another with ANSI colors, another with...
March 12, 2015 at 11:57 am
i think you just have to open each datasource in the web client and review it to see if it is using ORAOLEDB.Oracle, or ORAOLEDB.Oracle.1 right? how many unique...
March 12, 2015 at 7:28 am
this gives you the name of the report + name of the shared data source;
if your reports have embedded data sources, i think you have to open each report.
from there,...
March 12, 2015 at 7:03 am
Khades i tried with a user defined function as the default as wlel, doesn't work;
i think you're stuck with adding an trigger for insert in order to get your default...
March 11, 2015 at 11:53 am
there is no ability to directly render as any format (ie $renderAsWORD) from within SQL server; those functionalite are all possible with an exdtrnal resource.
you can do html, fixed...
March 11, 2015 at 10:09 am
Viewing 15 posts - 1,891 through 1,905 (of 13,469 total)