Viewing 15 posts - 31 through 45 (of 61 total)
Can you check in table if ld.Description has some values other than NULL? Query looks fine otherwise.
August 20, 2013 at 10:43 am
Yes. It's because of unrealistic project plan and communication gap between development team and business end users 🙁
August 19, 2013 at 6:00 pm
#2. working in SQL Server PSS and seeing the issues come in and solving them
I love to get most out of what we have, try all available resources to overcome...
August 19, 2013 at 5:52 pm
Partitioning is required to optimize the performance of SQL Server database. If database contains very large tables, you may benefit from partitioning those tables onto separate filegroups. This technology, introduced...
August 19, 2013 at 4:40 pm
Data Modeling, A Beginner's Guide By Andy Oppel
This book teaches you techniques for gathering business requirements and using them to produce conceptual, logical, and physical database designs.
August 19, 2013 at 4:27 pm
SQL Server 2008 R2 has additional option to Generate script with data. Helps a lot in cases 🙂
August 19, 2013 at 4:18 pm
http://www.w3schools.com/sql/ is a good site to start with.
August 19, 2013 at 4:12 pm
You may use dynamic SQL statements. something like,
--@schema is parameter
Declare @val1 nvarchar(500)
SET @val1 ='Select * from ' + @schema+'.'+'TableName'
execute(@val1)
August 17, 2013 at 7:15 pm
Try DBCC command to shrink database files.
Refer: http://technet.microsoft.com/en-us/library/ms190488.aspx
August 13, 2013 at 3:08 pm
Which authentication are you using? If you have logged in using SA, ensure SA has full permissions on the folder.
August 13, 2013 at 2:52 pm
Are you running the query from a saved file? I mean the query is saved in an .sql file? Check if the file has Read-only attributes.
August 13, 2013 at 2:43 pm
Viewing 15 posts - 31 through 45 (of 61 total)