Viewing 15 posts - 1 through 15 (of 18 total)
Excellent suggestion!!!
Ron just keep in mind to change change the package for DelayValidation = False, otherwise your package will fail.
March 11, 2013 at 10:39 pm
This looks like a school assignment. I think rather then giving him code we should send him some good tutorials.
January 30, 2013 at 7:07 pm
Hi,
I could not understand the update query within that stored procedure.
UPDATE @FirstTable
SET masuk = b.datang
from
(select userid,
convert(date,CHECKTIME,103) tgl,
convert(VARCHAR(5),min(CHECKTIME),14) datang,
convert(VARCHAR(5),MAX(CHECKTIME),14) selesai
from CHECKINOUT
WHERE convert(date,CHECKTIME,103) >= @sdate and convert(date,CHECKTIME,103) <=...
August 5, 2012 at 11:05 pm
I think you are trying to update a table and using @update (which is used for variables) instead of update
use this (i just delate @ infront of UPDATE)
string sql...
August 5, 2012 at 9:59 pm
The code is not working. There are numbers of errors like the following even you parse the query
Msg 102, Level 15, State 1, Line 2
Incorrect syntax near '?'.
Msg 102, Level...
August 5, 2012 at 5:30 pm
Another possible solution is to create a temp table ans store data there. hope that helps 🙂
August 1, 2012 at 6:33 pm
Agreed with Perry.
Moreover, if you have cluster situation and you are using drives or MPs of different node then both servers should be on the same cluster node.
July 26, 2012 at 4:51 pm
If you want to see the database changes then you can set a trace for the users having admin rights.
Following are the ones you need to understand and use...
July 23, 2012 at 4:13 pm
use this
SET @sql = 'IF EXISTS(SELECT * FROM ' + QUOTENAME(@SCHEMANAME) + '.' + QUOTENAME(@TABLENAME) + ' WHERE ' + @COLZ + ') INSERT INTO #RESULTS(TBLNAME,COLNAME,SQL) VALUES('''...
July 15, 2012 at 6:04 pm
Excellent Code, thanks Lowell 🙂
When i ran sp_UglySearch proc I did not get ColName.
use this
SET @sql = 'IF EXISTS(SELECT * FROM ' + QUOTENAME(@SCHEMANAME) + '.' +...
July 12, 2012 at 7:13 pm
Redgate is the best tool I used for database schema and data comparison.
Although it is not free but you can use a 30days trial to see if it is...
July 8, 2012 at 6:36 pm
The below microsoft artical might help you.
July 5, 2012 at 10:26 pm
Many thanks 🙂
/* Below is the well written topic to generate SQL Server Logins with hex passwords
http://support.microsoft.com/kb/918992 */
Regards,
Bilal
July 3, 2012 at 5:29 pm
Viewing 15 posts - 1 through 15 (of 18 total)