Viewing 15 posts - 3,166 through 3,180 (of 13,469 total)
pretty sure SQLSACT is correct;
part of the update process is updating the indexes that are affected, so when the transaction is committed, bit the data itself and the indexes...
July 3, 2013 at 7:35 am
OUCH this is painful to even acknowledge I built this query, after seeing how dog slow it is!
my thought is the command has to look something like this, for every...
July 2, 2013 at 3:48 pm
* also the Database Engine Tuning Advisor creates a trace with a NULL path, as well.
July 2, 2013 at 3:18 pm
also I'm pretty sure a profiler created trace does not have a path: so you can do check sys.traces as a quick sanity check, and that would tell you...
July 2, 2013 at 3:15 pm
As usual Sean's got it covered; about all i can say is null columns or tables with zero rows, is missing / no data often doesn't mean the objects can...
July 2, 2013 at 2:21 pm
it's effectively a script which performs the same operations as this GUI menu "Shrink Files" in SSMS performs...the followup screen lets you select either the database file(s) or the log...
July 2, 2013 at 12:18 pm
no, but the features differences all really have to do with a lot of advanced things, that would never come up in basic development; they come up more along...
July 2, 2013 at 10:30 am
xpreaderrorlog doesn't have a column dedicated to the database name, so no, there's no way to filter based on a LIKE statement directly.
there's a pretty good recap of the...
July 2, 2013 at 10:06 am
nikunj_lodhi (7/2/2013)
I wanted to know that can we have a single instance on two different databases?
I am till now aware that it is a one to one relation(correct me...
July 2, 2013 at 6:19 am
the format of your question screams "copy and paste" from your homework;
That's a little frowned upon here, so lets do it right:
can you show us the query you've created so...
July 2, 2013 at 6:11 am
well, if you are in SQL2005, you cannot take advantage of the FileStream data type.
In that case, best practice depends on the size of the files you want to store....
July 2, 2013 at 6:08 am
that C_recId is probably a varchar?
adding a format to the order by might help instead:
select *
from customer
where C_recid in (50200,50194,50430,50191,1)
order by RIGHT('00000' + C_recid ,5) DESC
July 2, 2013 at 5:11 am
try this to avoid integer division:
if sql divides two integers , it returns an integer datatype, which can get rounded or truncated.
SELECT ((count(item_keya) * 1.0 / count(snetworkname) * 1.0) *...
July 1, 2013 at 2:19 pm
SQL_TASK (7/1/2013)
1) From Production
2) From Dev.
The task is to move the data refresh from Production to Dev Server. But the table schema itself is changed is...
July 1, 2013 at 12:40 pm
i'm guessing since you are using powershell to substitute values, the date parameter must be in single quotes;
also, it looks like $Date_Import would get substituted too, which makes an invalid...
July 1, 2013 at 9:30 am
Viewing 15 posts - 3,166 through 3,180 (of 13,469 total)