Viewing 15 posts - 181 through 195 (of 320 total)
Mischa E.J. Hoogendoorn (11/12/2008)
I am working with sql-server 2005 since a few weeks, (before it was sql2000), and there is one advantage I'd like to use, and that is the...
November 12, 2008 at 5:52 am
steveb (11/12/2008)
DROP TABLE #DBFiles
CREATE TABLE #DBFiles
(
[DBName] [nvarchar](100),
...
November 12, 2008 at 5:31 am
if you will restore a backup, you will loose the changes after that backup of which restore you will take
November 12, 2008 at 5:03 am
IS there any use of Order By clause here
November 12, 2008 at 4:57 am
GilaMonster (11/12/2008)
krayknot (11/12/2008)
he wants to hide the table and he can hide the xml.Where? In another table? In the file system? Some other place?
not in another table. just on the...
November 12, 2008 at 2:29 am
GilaMonster (11/12/2008)
krayknot (11/12/2008)
store the pricing in xml and at the tiime of requirement, call the xml data in table variable (if the size is upto medium) and use temp table...
November 12, 2008 at 1:18 am
sairams (11/11/2008)
Dear kshitij,Thanks 4 your reply...
Encrypting the confidential values means i need to do a mass work on the application..Is there any other better option
Thanks,
Sairam
yes
store the pricing in...
November 12, 2008 at 12:09 am
Anu (11/12/2008)
any way...
November 12, 2008 at 12:02 am
sairams (11/11/2008)
My problem is that i have a table which stores pricing information. I would like to secure the information stored in this table.
1. How will i avoid unnecessary...
November 11, 2008 at 11:22 pm
Anu (11/11/2008)
Here the scenario like this , i am using a stored proc that contains some functional business logic ,here i didn't took the backup script and start...
November 11, 2008 at 10:31 pm
Kishore.P (11/10/2008)
use "uniqueidentifier" in your table.
Uniqueidentifier is a string constant in the form xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx, in which each x is a hexadecimal digit in the range 0-9 or a-f. For example,...
November 11, 2008 at 1:36 am
rd (11/7/2008)
I like to keep several versions of a record in a table. To accomplish that I use the following SQL statement
BEGIN
IF object_id('tempdb..#T') IS NOT NULL
DROP TABLE #T
SELECT *...
November 10, 2008 at 11:35 pm
tymberwyld (11/10/2008)
November 10, 2008 at 10:56 pm
iqtedar (11/10/2008)
November 10, 2008 at 10:36 pm
Kim Talley (11/10/2008)
November 10, 2008 at 10:34 pm
Viewing 15 posts - 181 through 195 (of 320 total)