Viewing 15 posts - 196 through 210 (of 629 total)
*cheers*, even though I have not implemented it. I have read recommendation where removing the Local Admin would be a good idea then not everyone has access to your...
March 27, 2009 at 8:17 am
Your welcome, CAST(Field_Value as INT) will round down so it works.
But if your users enter a value that is two decimal places then this idea has a small glitch. ...
March 27, 2009 at 8:13 am
Markus (3/27/2009)
March 27, 2009 at 8:04 am
Del Murray (3/27/2009)
Are you sure that if I backup the Log with a Logbackup on the Principal that the truncation of the Principal Log will be reflected in the...
March 27, 2009 at 7:58 am
Please don't cross post, replies here.
March 27, 2009 at 12:56 am
Heh gooders those quotes are always annoying but instead of using xp_sendmail (SQL Mail); I would recommend you use sp_send_dbmail (Database Mail). It is more secure and does not require...
March 27, 2009 at 12:52 am
May I ask why you want to do this? From the sounds of it these databases are separate entities. If that is the case by merging them all...
March 27, 2009 at 12:48 am
Hello,
Try ...
SELECT 1 AS SortKey, *
FROM tbl_Listings
WHERE Location='Hometown'
UNION ALL
SELECT 2 AS SortKey, *
FROM tbl_Listings
WHERE Location<>'Hometown'
AND Location not like 'RM%'
...
March 27, 2009 at 12:43 am
SQL server 2005 comes with native encryption ..
have a read at ..
And read up on Encryption in Books Online.
If you need further help post you questions here I am sure...
March 27, 2009 at 12:30 am
1) Take T-Log backup of Transaction log of the database in question.
2) Restore the most recent full backup to another database name on server.
3) Restore any Diff/T-Log backups you have.
4)...
March 27, 2009 at 12:28 am
Ohh you asked how to recover database after you broke mirroring ..
RESTORE DATABASE DBName WITH Recovery
How to break mirror:
ALTER DATABASE DBName WITH PARTNER OFF
Ref: http://sqllearnings.blogspot.com/search/label/Database%20Mirroring
March 27, 2009 at 12:22 am
Del Murray (3/26/2009)
March 27, 2009 at 12:21 am
If you broke the mirror you'll have to rebuild it anyways. Because both databases will be out of sync as soon as you truncate the log.
If Mirror...
March 27, 2009 at 12:17 am
sa is a SQL Server account; if you have users with Sysadmin rights you should be able to just go to properties and set it. I have to change...
March 27, 2009 at 12:12 am
Mastermind (3/26/2009)
I have a task of building a cutomized query builder in .NET. One solution I was proposed is to create one giant view containing around 170 columnsand thousands of...
March 27, 2009 at 12:01 am
Viewing 15 posts - 196 through 210 (of 629 total)