Viewing 15 posts - 2,326 through 2,340 (of 13,460 total)
for your local SQL instance, I'm sure you are sysadmin of the box;
that means any database you create or restore on that locla isntance will be under your umbrella, so...
Lowell
May 13, 2014 at 7:11 am
mkkb917 (5/9/2014)
ZoneSearch is a variable and it contain a zone name selected form the combo box itemshere it is "City"
don't you have to put singe quotes in there...
Lowell
May 9, 2014 at 10:15 am
your application would handle the CrLf automatically, with zero changes, as long as you are using the right object;
in C#.Net Windows Application,in a windows app, you'd could use System.Windows.Forms.Label,System.Windows.Forms.TextBox...
Lowell
May 9, 2014 at 8:12 am
i don't have an azure virtual, but on a regular box/server, you can extract the key from the registry; i found a decent powershell script that did that for me.
can...
Lowell
May 9, 2014 at 6:21 am
i'm thinking you might be able to do this in SQL, can't you?
what am i overlooking here?
i can get the UTC date, and datediff it agaisnt getdate(0 to get my...
Lowell
May 9, 2014 at 6:04 am
the error is being returned from the mail server, there is nothing wrong with your mail setup.
with rare exceptions, mail servers deny connections or anonymous emails in order to prevent...
Lowell
May 8, 2014 at 11:26 am
i believe you should simply do like windows AD does, and store the hash of the password, and not the password itself.
then you compare the potential new password to ...
Lowell
May 7, 2014 at 3:22 pm
UPDATE o SET Order_Number = (SELECT ord_number FROM dbo.orderheader oh
[highlight]WHERE o.mov_number = o.mov_number[/highlight])
FROM #Output o
that...
Lowell
May 7, 2014 at 10:21 am
well, the WHERE statement is still a "catch all" query, but isn't this functionally identical?
WHERE 1 = CASE WHEN @p_flag = 1 OR moveFlag = 26
...
Lowell
May 7, 2014 at 8:46 am
that looks like an accidental cross join to me.
it explicitly says UPDATE DRPDATA, but since the FROM has the table name as being aliased,and the unaliased table is not referenced...
Lowell
May 6, 2014 at 10:35 am
well, if you can show us the code, that would be helpful;
does the current script gracefully handle wierd db names with quotename?
a dynamically created backup command might fail, and move...
Lowell
May 5, 2014 at 11:47 am
first look at the job's code itself;
is it using a cursor to get the list of databases, or is it a static list?
for example, if i use red gate to...
Lowell
May 5, 2014 at 11:03 am
the starting at zero vs starting at one is because the function is adding time elements to generate your matrix of data
SELECT DATEADD( minute, n, DATEADD( YEAR, -2, GETDATE()))
if...
Lowell
May 5, 2014 at 10:56 am
for my personal CLR collection, the UNSAFE/EXTERNAL/SAFE designation is assigned at the project (dll) level, and not against individual procedures/functions.
So all my CLR's are under a single project. that project...
Lowell
May 2, 2014 at 7:06 am
Eirikur Eiriksson (5/1/2014)
Lowell, you where almost there! Changed the code to modify and store the encrypted secret, then decrypt in the select. This code has everything needed for either storing...
Lowell
May 2, 2014 at 4:55 am
Viewing 15 posts - 2,326 through 2,340 (of 13,460 total)