Ok for redeem my points now
So if I understand correctly… - You have created “shares” using iSeries Navigator? (i.e. a share named “root” for the / directory, a share named “test” for /home/jdoe/test, and so on) - And using “net use X: QS6555A8Aroot” or “net use Z: QS6555A8Atest” in a DOS box on a client PC doesn’t work? Very strange [...]
<b> manual to use file server software </b>
Password changes are done via the sp_password system stored procedure. <pre>exec sp_password ‘sa’, ‘YourNewPassword’</pre>
I’ve had to do stuff like this in the past. In my case it was a loan processing system, so the master number to work off of was the Account Id. So I created a table, and loaded up 10% of the Account Ids into the table. Then used the records in the table to [...]
Hello I am having the same issue! Has anyone come up with an answer yet? I’m quite frustrated by this and am also only finding discussions of the Web edition on-line. What’s the deal?
The POSITIVEN type is allowed for IN paramaters only, as the initial value of an OUT parameter is NULL by definition. You should use POSITIVE for the out paramter instead.
sp_help_revlogin can be used to export the logins and the encrypted passwords. Go can google for it and get the code from Microsoft’s site.
If you are getting errors with the code you posted, please provide the exact error messages or tell us what the problem with that code is. If this code is working but you want to add the necessary logic to check if the record already exists before inserting it, you could put the insert into [...]
The basic process is that the row is inserted into the table. When this happens the transaction is logged into the transaction log. The log reader reads the log and gets the information from the transaction log and writes it to the distribution database. From there the distribution agent (or merge agent if you are [...]
Usually this is caused by a lack of indexes in the database.
Carlosdl 29360 pts. | Nov 9 2009 11:08PM GMT I’m wondering how is that running without errors. AFAIK, the DATEPART function retunrs an integer, so, here: <pre>[service date 1] between [new patient date] and datepart(m,[new patient date])+1</pre> You are mixing two different data types. I think you should try something like this: <pre>[service date 1] [...]
You need to edit the report defination, then run the stored procedure. Then click the refesh button in the tool bar at the top. You can then edit the parameters and you should see the new parameters.
When using dbmail you can use a Windows account or a local account. Dbmail uses SMTP to send email, it doesn’t use the account that SQL Server is running under. The receive connector can be left with the default settings. When you configure the dbmail settings you can give it a Windows account and password [...]
Spammers use your eMail return address to keep themselves from getting blocked. There is nothing you can do about this, unless someone figures out a way to handle the problem network-wide. Bob here – This is also a technique used to spread viruses and spam in general. The fact that your email address gets used [...]
Depending on how the *SRVPGM was created, you may be able to get what you want with DEBUG. YOu can do a DSPSRVPGM on the main SRVPGM that has the modules. Then do a STRDBG on a program that calls one of the modules putting a break point at the point of the callp. Call [...]
Right click on the database, select all tasks, then Generate SQL Script. This will allow you to select all the objects and put everythng into a single script.
Are you just trying to export the data to a CSV file or something? If so then BCP, DTS, or SSIS will be your best bet.
I had the same question and could not easily find any answers. Here is what I came up with. The sysobjects table stores each table name with a type = ‘u’ The syscolumns table stores the column name for each table. Each of these tables shares an ID column, which you can use to join [...]
Something like this should do the trick: <pre>SELECT * FROM tblTest WHERE DATEADD(ss,CAST(LEFT(time,10) AS INT),’01/01/1970′) BETWEEN ‘<some time>’ AND ‘<some time>’;</pre> —————– kccrosser While CarlosDL’s query will work, it will result in a full table scan on every call. A more efficient approach is to compute the time field’s min/max values and then run the [...]





