Viewing 15 posts - 106 through 120 (of 497 total)
GilaMonster (9/21/2011)
The point is that you need the query with the column name to only be parsed if the exists returns true. Both...
September 21, 2011 at 1:34 am
GilaMonster (9/20/2011)
You can change the select...
September 21, 2011 at 1:01 am
Sean Lange (8/29/2011)
Roust_m (8/28/2011)
Just was wondering, from the best practices point of view, are there any disadvantages in using table valued parameters for your SPs in the application. E.g.:...
August 29, 2011 at 7:11 pm
GilaMonster (7/14/2011)
MCITP SQL 2008 Database Administrator.
This requires that you have already written 70-432 MCTS: SQL Server 2008, Implementation...
July 14, 2011 at 4:20 am
calvo (7/13/2011)
Administrative track-
70-432 MCTS: SQL Server 2008, Implementation and...
July 13, 2011 at 7:17 pm
I will check the version tomorrow, when I come to the office.
Why does it have to be the primary only? I reckon, the backup should continue as long as...
February 16, 2011 at 2:29 am
That extra "from" is related to commented out select statement.
I worked this out:
delete MyDB1.[dbo].[Company]
-- select top 10 * from
from MyDB1.[dbo].[Company] c1
left join MyDB2.[dbo].[Company] c2
on c1.CompanyID = c2.CompanyID
WHERE c2.[CompanyID] is...
February 7, 2011 at 4:15 pm
I am disabling the indexes on indexed views so this is not a problem. The problem is with "NOT IN"
I am trying something like this:
delete
-- select top 10...
February 6, 2011 at 11:12 pm
No, all the columns are identical, the only difference is that the subscriber has few extra columns.
February 1, 2011 at 10:01 pm
Michael Valentine Jones (11/29/2010)
November 29, 2010 at 8:56 pm
Amu (11/29/2010)
You can also get it from sysprocesses.select hostname from sysprocesses where program_name like 'Microsoft® Windows® Operating System%'
I need to be able to tell what happened in the past. ...
November 29, 2010 at 3:12 pm
Steve-3_5_7_9 (11/29/2010)
November 29, 2010 at 3:11 pm
Well, I've tested it. I've created a new database with an empty compressed table and did an insert of 1GB of data. The data file went up to...
November 11, 2010 at 5:59 pm
My logic is: with row compression, your varchar(1000) column may turn into char(100), so more records will fit into a single page as the page remains the same 8KB size...
November 10, 2010 at 2:45 pm
TheSQLGuru (10/5/2010)
3) I gotta say it is a darn shame in this day and age that you are fretting over a paltry 50GB of disk space!! :blink:
$320 per 50GB...
October 5, 2010 at 5:40 pm
Viewing 15 posts - 106 through 120 (of 497 total)