Viewing 15 posts - 5,101 through 5,115 (of 6,400 total)
Not to worry, happy to help as always. Glad its working for you.
May 14, 2012 at 7:18 am
That is due to DATEADD(YEAR,-25,GETDATE()) returning 1987-05-14, so it is excluded from the list.
The below should now work.
DECLARE @tbl TABLE (BIRTHDAY DATETIME, NAME NVARCHAR(50), SURNAME NVARCHAR(50))
INSERT INTO @tbl (BIRTHDAY, NAME,SURNAME)...
May 14, 2012 at 7:12 am
Why introduce a login page when SSRS automatically handles the login methods via AD?
I can understand doing this as an external facing SSRS solution but not when its internal due...
May 14, 2012 at 7:06 am
Wow, thats such a massive topic, way to much to get into on a SQL forum.
I would recommend using our good friend Google.
If you have a specific issue then we...
May 14, 2012 at 6:54 am
This should get you what you need for that particular age range.
SELECT
BIRTHDAY,
NAME,
SURNAME
FROM
TABLE
WHERE
BIRTHDAY >= DATEADD(YEAR,-25,GETDATE())
AND
BIRTHDAY <= DATEADD(YEAR,-20,GETDATE())
May 14, 2012 at 6:49 am
IIRC ClusterAdmin needs only public access to be able to in a fashion do a connection to the master database to check its online to either initiate a fall over...
May 14, 2012 at 5:55 am
the best place to start would be here http://technet.microsoft.com/en-us/library/ms151198.aspx and then pic the replication type which is best suited for what you need to do.
May 14, 2012 at 5:15 am
Hi welcome to SSC, please could you take a moment to read the second link in my signature on how to post code as it will help us, help you...
May 14, 2012 at 4:17 am
Hi, welcome to SSC, please could you take a few minutes to read through the second link in my signature block in relation to posting code so that we can...
May 14, 2012 at 3:57 am
Yes you are correct that if your password expires then the data source will fail to work.
Personally I would go for the second option, and set it as a user...
May 14, 2012 at 3:39 am
If you change the data source to use your credentials, then each user which runs any reports which use that data source will impersonate your credentials.
If you dont want this...
May 14, 2012 at 3:25 am
what error, severity, state numbers do you have for this?
something like error 18456, severity 14, state 11?
May 14, 2012 at 2:02 am
also if you use a proxy account you will find it in the run as box of the job step, if it says SQL Server Agent Account, then this should...
May 14, 2012 at 1:53 am
yes, it will be the execute as drop down box of the job step
May 11, 2012 at 8:52 am
Viewing 15 posts - 5,101 through 5,115 (of 6,400 total)