Viewing 15 posts - 811 through 825 (of 925 total)
Adi Cohn-120898 (2/18/2010)
Select...
February 18, 2010 at 8:28 am
I was reading through the SS 2008 System View poster this morning (I know - I should get out more) when I caught sight of the table 'sys.identity_columns', and had...
February 18, 2010 at 7:45 am
The starting point I use for finding references to a field is:
select distinct object_name(object_id)
from sys.sql_modules where definition like '%fieldname%'
BrainDonor
February 16, 2010 at 6:39 am
One way of setting the values of the columns is using the CASE function. Have a look in BOL (Books On Line).
BrainDonor
February 15, 2010 at 4:47 am
February 12, 2010 at 12:48 am
GilaMonster (2/10/2010)
BrainDonor (2/10/2010)
the Log file only records any changes made since the last database backup.
No it does not. The log file records changes since the last log backup (in full/bulk-logged...
February 10, 2010 at 5:05 am
You have to have a Full Backup in order to restore - the Log file only records any changes made since the last database backup.
Piecing together a database from the...
February 10, 2010 at 3:15 am
If your date formats are consistant across your servers and databases then why bother formatting them? I've had to do it in the past to remove the time element, or...
February 10, 2010 at 2:57 am
I had a similair question some time ago - http://www.sqlservercentral.com/Forums/Topic731245-338-1.aspx
BrainDonor
February 10, 2010 at 1:27 am
Duplicate Post - refer to http://www.sqlservercentral.com/Forums/Topic862962-146-1.aspx
February 10, 2010 at 1:20 am
Instructions on how to use the tags would be nice, possibly emailed as part of the initial registration or as a pop-up within the Post Reply screen.
It took me a...
February 9, 2010 at 1:31 am
Unfortunately not. I may be just having a bad Monday, but I'm still puzzled by your reference to a Primary Key, when you have duplicated IDs in this.
Show me the...
February 8, 2010 at 8:39 am
suneel-210238 (2/8/2010)
We have a table where we store versions of data and mark with some version indicator. Typically we are having around 50 columns in this table.
We got a requiremnt...
February 8, 2010 at 7:01 am
You have to use dynamic SQL, an example is here: http://www.sqlservercentral.com/Forums/Topic769832-338-1.aspx
Other examples are scattered throughout SSC.
BrainDonor
February 8, 2010 at 1:15 am
February 5, 2010 at 8:06 am
Viewing 15 posts - 811 through 825 (of 925 total)