Viewing 15 posts - 5,401 through 5,415 (of 14,953 total)
Are you asking for a logical design for the database?
January 7, 2011 at 12:59 pm
Page Life Expectancy is the number of seconds data is left in RAM before SQL Server needs to move it out to make room for more data.
The Buffer Hit Ratio...
January 7, 2011 at 12:58 pm
It's not actually a cartesian product, so an Inner Join and a Cross Join with the same criteria will produce the same plan and same results.
On truly huge datasets, like...
January 7, 2011 at 12:47 pm
Bhuvnesh (1/7/2011)
GSquared (1/6/2011)
I haven't used it in a while (I use CLR procs instead)
i am also using sysadmin credential for xp_cmdshell.
can you help me out how you are using...
January 7, 2011 at 11:24 am
Is the login in use still associated with that database role?
Has there been any Deny command issued on any of the needed rights since the Grant was issued?
January 7, 2011 at 11:23 am
You're welcome.
It's always been interesting to me that SSIS works so poorly with Excel. You'd think MS could get that one ironed out.
January 7, 2011 at 11:18 am
Tom.Thomson (1/7/2011)
GSquared (1/7/2011)
January 7, 2011 at 11:16 am
Your "select description" piece is returning more than one row. You can have it do that in that part of the query.
I'd have to see table definitions, at least,...
January 7, 2011 at 11:12 am
What end result are you trying to achieve? We don't know your business rules, so it's hard to tell what to suggest regarding the query.
January 7, 2011 at 9:24 am
You'll probably have to use a script object to write the text file instead of a data flow to export to it.
January 7, 2011 at 9:20 am
;with CTE as
(select familyID, ParentEmail, Parentpassword, Adusername, Adpassword, firstname, lastname, nameID,
row_number() over (partition by ParentEmail order by familyID) as Row
from tblParents)
select *
from CTE
where Row = 1;
Will that give you what...
January 7, 2011 at 9:19 am
WayneS (1/7/2011)
GSquared (1/7/2011)
January 7, 2011 at 8:31 am
Brandie Tarvin (1/7/2011)
GSquared (1/7/2011)
January 7, 2011 at 6:58 am
You can modify the parallelism threshold in the SQL Server properties. Take a look at the data on that in MSDN/BOL.
January 7, 2011 at 6:49 am
Do you have mixed data types in the columns that are coming up with incorrect nulls? Like the first few rows are numbers, and below that it has character...
January 7, 2011 at 6:48 am
Viewing 15 posts - 5,401 through 5,415 (of 14,953 total)