-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Is It Possible to update any trigger in Information schema?
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Given:
I added a non-nullable foreign key to a table.
I settled on a way to populate the foreign key with default values.
I checked in both changes to a re-runnable DB creation script.
Other developers ran this script, and now they have the foreign key populated with default values on their developer…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
hi
what i am trying to do is get all the collums of a table (the table can be empty)
example of what i did before:
SELECT COLUMN_NAME FROM
INFORMATION_SCHEMA.COLUMNS
WHERE table_name = 'aTable'
AND table_schema = 'theDatabase'
it works perfectly on localhost however on my provider it gives:
#1142…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I want to run a diagnostic report on our MS SQL 2008 database server.
I am looping through all of the databases, and then for each database, I want to look at each table. But, when I go to look at each table (with tbl_cursor), it always picks up the tables in the database 'master'.
I think it's…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have been given access to a SQL Server database that is currently used by 3rd party app. As such, I don't have any documentation on how that application stores the data or how it retrieves it.
I can figure a few things out based on the names of various tables and the parameters that the user-defined…
>>> More