User Vendoran - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T03:43:08Zhttp://stackoverflow.com/feeds/user/24666http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1002469/ssrs-2008-displaying-date-datetype-correctly0SSRS 2008 Displaying Date Datetype correctlyVendoran2009-06-16T16:02:42Z2009-06-16T16:13:38Z
<p>I'm using SQL 2008 and SSRS 2008:</p>
<pre><code>CREATE TABLE [dbo].[DimDates](
[pkDateID] [int] NOT NULL,
[FullDate] [date] NULL,
[DayNumberOfWeek] [tinyint] NULL,
[DayNameOfWeek] [varchar](9) NULL,
[IsLastDayOfMonth] [char](1) NULL,
[MonthName] [varchar](9) NULL,
[CalendarDay] [smallint] NULL,
[CalendarWeek] [tinyint] NULL,
[CalendarMonth] [tinyint] NULL,
[CalendarQuarter] [tinyint] NULL,
[CalendarYear] [smallint] NULL,
[FiscalDay] [smallint] NULL,
[FiscalWeek] [tinyint] NULL,
[FiscalMonth] [tinyint] NULL,
[FiscalQuarter] [tinyint] NULL,
[FiscalYear] [smallint] NULL,
)
GO
CREATE PROCEDURE [dbo].[LookupWeek]
@StartDateID int = NULL
AS
IF @StartDateID IS NULL
SELECT
dd.pkDateID
, dd.FullDate
FROM
dbo.DimDates dd
WHERE
dd.DayNumberOfWeek = 7
AND dd.FullDate <= GETDATE()
ORDER BY
dd.pkDateID DESC
ELSE
SELECT
dd.pkDateID
, dd.FullDate
FROM
dbo.DimDates dd
WHERE
dd.DayNumberOfWeek = 7
AND dd.pkDateID >= @StartDateID
AND dd.FullDate <= GETDATE()
ORDER BY
dd.pkDateID DESC
RETURN 0
GO
</code></pre>
<p>We're utilizing the sp above to fill both the @StartDate and @EndDate in a SSRS report. The issue occurs when displaying FullDate in the drop down box for the parameter, it doesn't display as a date, it displays as a datetime and adds the 12:00:00 AM to every row.</p>
<p>Any ideas why or how we can stop it?</p>
<p>Thanks,</p>
<p>--Aaron</p>
http://stackoverflow.com/questions/505606/ssas-2008-account-provision0SSAS 2008 Account provisionVendoran2009-02-03T00:31:28Z2009-02-04T03:49:01Z
<p>During SSAS 2008 installation the Account provisioning tool comes up and you can select the current Windows user (or other windows user). However that account was deleted prior to adding another user as the administrator. In 2005 the tool existed on the server and could be run manually, however I’m not seeing it in 2008.</p>
<p>I assume I can uninstall and reinstall to do this, however is there another way how I can add an admin account?</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/225946/sql-server-2005-data-file-inconsistency-maybe-8-data-files-maybe-5-who-knows0SQL Server 2005 data file inconsistency (maybe 8 data files, maybe 5, who knows)Vendoran2008-10-22T14:20:15Z2009-01-12T04:55:46Z
<p>I have a SQL Server 2005 sp2 box where tempdb has either 8 data files or 5 data files dependingo n where you look. DBCC showfilestates and sys.database_files (both queried in tempdb) show 8 data files (tempdev - tempdev8), however when I query sys.master_files (in master db, which is also what the GUI uses), I only see 5 (tempdev, tempdev5 - tempdev8). I cannot add a tempdev2 - tempdev4 as I get an error that it already exists and I can't restart the SQL Server anytime soon to recreate tempdb.</p>
<p>Anyone know:
1.) how this can happen?
2.) more importantly, how I can correct it?</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/227438/sql-server-row-length/227516#2275162Answer by Vendoran for SQL Server Row LengthVendoran2008-10-22T20:55:21Z2008-12-29T03:00:54Z<p>How doing it this way instead? </p>
<pre><code>CREATE TABLE tblShowContig
(
ObjectName CHAR (255),
ObjectId INT,
IndexName CHAR (255),
IndexId INT,
Lvl INT,
CountPages INT,
CountRows INT,
MinRecSize INT,
MaxRecSize INT,
AvgRecSize INT,
ForRecCount INT,
Extents INT,
ExtentSwitches INT,
AvgFreeBytes INT,
AvgPageDensity INT,
ScanDensity DECIMAL,
BestCount INT,
ActualCount INT,
LogicalFrag DECIMAL,
ExtentFrag DECIMAL
)
GO
INSERT tblShowContig
EXEC ('DBCC SHOWCONTIG WITH TABLERESULTS')
GO
SELECT * from tblShowContig WHERE ObjectName = 'MyTable'
GO
</code></pre>
http://stackoverflow.com/questions/208604/how-to-cascade-rename-pk-on-table-ms-sql-2005/226092#2260920Answer by Vendoran for How to cascade rename PK on table, MS SQL 2005Vendoran2008-10-22T14:53:17Z2008-10-22T14:53:17Z<p>You could also use a refactoring tool, I know Visual Studio Team Edition for Database Professionals could handle this.</p>
http://stackoverflow.com/questions/220890/how-do-i-add-a-new-replicated-table-to-a-sql-server-2005-db-that-is-in-merge-repl/226048#2260481Answer by Vendoran for How do I add a new replicated table to a SQL Server 2005 DB that is in merge replication?Vendoran2008-10-22T14:43:15Z2008-10-22T14:43:15Z<p>sp_addmergearticle - Adds an article to an existing merge publication. This stored procedure is executed at the Publisher on the publication database.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms174329.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms174329.aspx</a> </p>
http://stackoverflow.com/questions/209927/sql-server-2005-restoring-an-encrypted-db-on-a-different-server/225989#2259891Answer by Vendoran for SQL Server 2005 - Restoring an encrypted DB on a different serverVendoran2008-10-22T14:30:32Z2008-10-22T14:30:32Z<p><a href="http://blogs.msdn.com/lcris/archive/2007/11/16/sql-server-2005-restoring-the-backup-of-a-database-that-uses-encryption.aspx" rel="nofollow">http://blogs.msdn.com/lcris/archive/2007/11/16/sql-server-2005-restoring-the-backup-of-a-database-that-uses-encryption.aspx</a> answers this:</p>
<p>"When you restore a database that uses encryption features, there is only one thing you need to take care off - if the database master key (DbMK) needs a service master key (SMK) encryption, you need to regenerate this encryption. Note that this encryption is made by default when you create the DbMK, but it may be intentionally dropped, if you want tighter control of access to the encrypted data. Anyway, if you did have such SMK encryption for the DbMK, the steps to regenerate it are the following:</p>
<p>OPEN MASTER KEY DECRYPTION BY PASSWORD = 'password'
ALTER MASTER KEY ADD ENCRYPTION BY SERVICE MASTER KEY
CLOSE MASTER KEY</p>
<p>That's it - the database encryption features should now work as when the backup was taken. Also note that it doesn't matter if you restore the database on the server where the backup was taken or elsewhere. The only thing that matters for this procedure is that you know one of the passwords protecting the DbMK "</p>
http://stackoverflow.com/questions/225946/sql-server-2005-data-file-inconsistency-maybe-8-data-files-maybe-5-who-knows/243584#243584Comment by Vendoran on SQL Server 2005 data file inconsistency (maybe 8 data files, maybe 5, who knows)Vendoran2008-11-16T02:27:16Z2008-11-16T02:27:16ZI saw all 8 physical fileshttp://stackoverflow.com/questions/225946/sql-server-2005-data-file-inconsistency-maybe-8-data-files-maybe-5-who-knows/227533#227533Comment by Vendoran on SQL Server 2005 data file inconsistency (maybe 8 data files, maybe 5, who knows)Vendoran2008-10-22T21:34:21Z2008-10-22T21:34:21ZWe have been experiencing some contention and were going through some best practice excercises to test load on a server and according to <a href="http://msdn.microsoft.com/en-us/library/ms175527.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a> :
"As a general guideline, create one data file for each CPU on the server."