Viewing 15 posts - 4,306 through 4,320 (of 11,678 total)
Please do not crosspost. It wastes peoples time and fragment replies.
Original thread with replies can be found here:
http://www.sqlservercentral.com/Forums/Topic1509687-17-1.aspx
October 30, 2013 at 4:51 am
SET DATEFIRST 1; -- first day of the week is a Monday
DECLARE @monthINT = 10;
DECLARE @yearINT = 2013;
-- Tally table of 7 rows
WITH CTE_Tally AS
(
SELECT 0 AS Number
UNION ALL
SELECT 1
UNION...
October 30, 2013 at 2:40 am
Any package configurations? (if using package deployment model)
Or parameters used to configure connection strings?
October 30, 2013 at 2:19 am
Matt Miller (#4) (10/29/2013)
October 30, 2013 at 2:16 am
SQLRNNR (10/29/2013)
Koen Verbeeck (10/20/2013)
Steve Jones - SSC Editor (10/18/2013)
It's definitely nice to touch people online.Sounds weird when taken out of context 😀
Trust Koen to take it out of context :hehe:
:cool:...
October 30, 2013 at 2:04 am
Phil Parkin (10/30/2013)
anjanbv (10/30/2013)
Am able to get the script for getting package names but am not able to get database info, connection string and users details.
When you say users details,...
October 30, 2013 at 1:54 am
Use a derived column to replace the NULL values with 0.
October 29, 2013 at 8:54 am
I haven't done it myself, but I believe it will be possible.
Some examples on APPLY:
October 29, 2013 at 8:14 am
If the stored procedure is converted to a function, you could use CROSS APPLY to call the function for each row.
October 29, 2013 at 7:43 am
frdrckmitchell7 (10/29/2013)
NOLOCK, btw, is something standard that we use here. I have to use it because my boss wants it in the code.
I hope your boss is fully aware...
October 29, 2013 at 6:57 am
What is the error? How do you try to put TrxDateNumeric into StartDate?
ps: any reason why you are using NO_LOCK in your query?
October 29, 2013 at 6:46 am
Do you want to copy them?
Either write a decent SQL query that retrieves only the values you need and then copy paste it.
Or copy paste everything to Excel and then...
October 29, 2013 at 5:01 am
This could be a good start:
October 29, 2013 at 4:34 am
This post has a solution:
October 29, 2013 at 3:41 am
Viewing 15 posts - 4,306 through 4,320 (of 11,678 total)