Viewing 15 posts - 8,701 through 8,715 (of 26,490 total)
Grass (2/28/2013)
Trying to get data by month for current month and previous month in ssrs but couldn't able to get it. I was using this statement in procedure:
IF @CurrentDate...
February 28, 2013 at 2:54 pm
Comes down to if the scalar function is being called once per query or once per row in the query.
February 28, 2013 at 10:19 am
To accomplish a point in time restore you need the STOPAT = 'datetime' as part of the RESTORE LOG command.
Here is a link to MSDN: http://msdn.microsoft.com/en-us/library/ms186858(v=sql.100).aspx
February 28, 2013 at 10:15 am
I'll let others provide more info, but from what I have been learning, don't always put much credence in those values.
February 28, 2013 at 9:47 am
To accomplish a point in time recovery. You this clause when you want to restore a database to a specific point in time, prehaps to capture data that was...
February 28, 2013 at 9:43 am
This is from MSDN regarding DBCC CLEANTABLE:
DBCC CLEANTABLE reclaims space after a variable-length column is dropped. A variable-length column can be one of the following data types: varchar, nvarchar, varchar(max),...
February 28, 2013 at 6:39 am
sej2008 (2/28/2013)
Will two mirroring sessions on same instance use single endpoint or I requiretwo separate endpoint for two mirroring session on my box.
IIRC an instance can have only one mirror...
February 28, 2013 at 6:26 am
Please read the first article I reference below in my signature block. Follow the instructions in that article regarding what you should post and how to post it to...
February 27, 2013 at 11:09 pm
Why not explain exactly what it is you are trying to accomplish? I have no idea so I have no idea what to tell you until you can provide...
February 27, 2013 at 10:56 pm
Not sure how to do it in SSIS but in T-SQL:
CONVERT(VARCHAR(8),MyDateCol, 112)
Can you convert it prior to SSIS doing its thing?
February 27, 2013 at 10:48 pm
Well, if we could see what was running on the server when PLE drops we might be able to help you out, unfortunately we can't see it.
One guess would be...
February 27, 2013 at 6:24 pm
daglugub 60457 (2/27/2013)
February 27, 2013 at 6:21 pm
insanityflyff (2/27/2013)
DELETE FROM [CHARACTER_01_DBF].[dbo].GUILD_MEMBER_TBL WHERE NOT EXISTS (SELECT (m_idPlayer) COLLATE DATABASE_DEFAULT FROM [LOGGING_01_DBF].[dbo].[LOG_LOGIN_TBL])
hopefully this will be better
and about the loop thing i...
February 27, 2013 at 6:19 pm
You may also want to read this article: http://www.sqlservercentral.com/articles/T-SQL/67898/.
February 27, 2013 at 3:54 pm
Look at using LEFT OUTER JOINS and either ISNULL (SQL Server specific) or COALESCE (ANSI Standard).
February 27, 2013 at 12:37 pm
Viewing 15 posts - 8,701 through 8,715 (of 26,490 total)