Viewing 15 posts - 7,681 through 7,695 (of 13,460 total)
kinda brief on the details, aren't you?
I think the real issue is you KNOW there is a relationship between the two tables, but don't know how to join them? does...
May 3, 2011 at 11:35 am
i think you could run into problems if the default colaltion ( which is what tempdb would have) is different:
this simple exampel raises this error:
Msg 468, Level 16,...
May 3, 2011 at 10:00 am
yes you can do it, but there are a few rules: the sheet has to have column names in the first row, i think.
if your SQL2008 instance is 64 bit,...
May 3, 2011 at 9:27 am
i've seen this same requirement in other posts; we could google to find the original thread itself, but I wrote this snippet in response; this generates all the revoke commands...
May 3, 2011 at 8:28 am
you probablyt want to describe what you are trying to do to get a better answer, as it's a pretty broad question.
This kind of question sometimes comes up due...
May 3, 2011 at 6:57 am
i htink by using a case statement, you can make sure you apend them together correctly; I'm assuming the fields are varchars, so i don't worry about trailing spaces;
see if...
May 2, 2011 at 2:52 pm
here's an example on how to get all the elements to create the Julian date; to append them you have to cast them to VARCHAR, and you'd also have to...
May 2, 2011 at 2:20 pm
Krasavita (5/2/2011)
The data is going to JDEdwards
I think you'll have to check with them to know what specific format they expect before we can give you much of a code...
May 2, 2011 at 9:56 am
ahh...but WHICH Julian format do you want?
from lurking here on the forums, I've seem three different styles;
for example
109252 = in AS400/DB2 date is 01/01/1900 + 109 years +...
May 2, 2011 at 9:24 am
TRUNCATE can be prevented if a FOREIGN KEY exists to the table,so you could create an empty table with a FK constriant to the tables you want to protect from...
May 2, 2011 at 8:24 am
i think this is my "final" version of the script; hope this helps you:
--Reverse_Engineer_database_Mail_Settings.sql
USE msdb
GO
Declare @TheResults varchar(max),
@vbCrLf CHAR(2)
SET @vbCrLf = CHAR(13) +...
April 28, 2011 at 3:05 pm
and yet another way..this doesn't return the "hidden" servers denny identified; just the items that are advertised via SQL browser, i think.
this is how to do it in .NET using...
April 28, 2011 at 2:49 pm
yes, except for the passwords used for the mailserver's AUTH command; those are in a CREDENTIAL that I've never figured out how to script out yet;
however the rest of it's...
April 28, 2011 at 2:15 pm
dallas13 (4/28/2011)
Here is what it says,
WinZip(R) Command...
April 28, 2011 at 8:29 am
i think the double quotes have to be around the entire path to the wzzip.exe file, not just *part* of the file name:
declare @cmd varchar(2000)
select @cmd
= '"C:\Program Files (x86)\WinZip\wzzip.exe"' +...
April 27, 2011 at 9:49 pm
Viewing 15 posts - 7,681 through 7,695 (of 13,460 total)