Viewing 15 posts - 316 through 330 (of 1,132 total)
The Knowledge base article on "How to transfer logins and passwords between instances of SQL Server" has been updated and now includes how tos for different versions of SQL Server.
August 16, 2008 at 10:37 am
Thanks Gift and I understand your point.
When I was young and first making the transition from IBM mainframes to Unix/Windows environment and a customer told me that the RDBMS was...
August 16, 2008 at 10:30 am
Additional comments:
The SQL Standard allows multiple triggers on a table for the same action
and allows specification of the order with the SEQUENCE keyword but
SQL Server allows multiple triggers but...
August 16, 2008 at 10:18 am
The trigger source you posted adheres to the SQL Standard but is not supported by SQL Server,
which uses a TransAct/SQL dialect. This is understandable, as SQL Server Triggers predate...
August 16, 2008 at 9:45 am
Gift Peddie wrote
That is the thing you have skipped creating the ER design before converting the ER design to the relational tables still does not include RDBMS vendors.
And...
August 16, 2008 at 9:18 am
I am not sure what you are trying to say, but SQL in todays world is being looked as a powerful development tool.
It would not be correct to say that...
August 15, 2008 at 5:10 pm
I own many database design books, and recommend either of these two.
College course reference and tends to the theoretical:
Handbook of Relational Database Design
by C. C. Fleming and Barbara von...
August 15, 2008 at 11:42 am
Back to the original question about the SQL Server debugger. My question is why would one ever use such a tool? I have been writing SQL since 1990...
August 15, 2008 at 11:14 am
"Would this type of Index affect the performance of inserts?"
As Gail Shaw indicated, there are many factors to answer this question and two that should be answered first are:
1)...
August 15, 2008 at 8:13 am
"Its not a bug its just bad practice."
Default databases are a bad practice. About a year ago, I went thru a review with the Security and Auditing department...
August 15, 2008 at 7:37 am
Sorry, a correction:
Customers database is restored first and is assigned dbid of 5 and then the Products database is restored and is assigned a dbid of 6.
The dbids of 1...
August 15, 2008 at 5:24 am
Setting the Default database to anything other than master is asking for trouble as you discovered. The root cause is that within the logins system table, the default database is...
August 15, 2008 at 5:19 am
Based on the IO statistics, it appears that the table has very few rows which causes the optimal SQL query plan to be a table scan via the clustered...
August 15, 2008 at 4:59 am
It is unclear what you attempting to do with names like Table1 and Table2, but why is the solution so complex?
This SQL appears to be a logic equivalent:
delete from...
August 13, 2008 at 4:12 pm
Be aware that the default configuration of SQL Server 2008 does not allow connect from a different computer. Use the SQL Server Configuration Manager to configure allowed network protocols.
August 12, 2008 at 6:26 pm
Viewing 15 posts - 316 through 330 (of 1,132 total)