Viewing 15 posts - 1,186 through 1,200 (of 1,838 total)
momentueel (12/16/2016)
1. Account
2. Transaction Type
3. Spending category (household, rent, income etc)
What have I done:
- I've created a staging table called stg_transactions...Datatypes are only...
December 19, 2016 at 8:56 am
I don't think there's anything built in to do that. It is pretty easy to get this kind of information on a scheduled basis and store it in a...
December 16, 2016 at 1:52 pm
Ditto on the Lego building with the kids as someone else mentioned. We probably have way too much, as I have all the Legos from when I was a...
December 16, 2016 at 9:57 am
That dynamic management view shows you aggregated execution statistics for cached queries. SQL Server doesn't store information about each individual execution of the query. If someone is currently...
December 15, 2016 at 2:29 pm
you can try looking in the Event Viewer at the System Windows Log, and look for items with a Source starting with Kernel
December 15, 2016 at 12:00 pm
ps_vbdev (12/15/2016)
December 15, 2016 at 8:33 am
Senchi (12/14/2016)
Correct me if I am wrong : I have to run 3 stored procedures to add a user to server and database ?
However, when adding a user...
December 14, 2016 at 12:54 pm
JustMarie (12/14/2016)
starting with 2012 (I believe) that some previously unicode characters were accepted by non-unicode fields.
the original post said both the source table and destination table are on SQL Server...
December 14, 2016 at 10:28 am
ps_vbdev (12/14/2016)
December 14, 2016 at 9:20 am
Some housekeeping things to consider:
- if you use SQL Agent, clean old job history in MSDB https://msdn.microsoft.com/en-us/library/ms175044.aspx
- clean old backup history in MSDB https://msdn.microsoft.com/en-us/library/ms188328.aspx
- if you use DB mail, clean...
December 14, 2016 at 8:12 am
etl2016 (12/12/2016)
I have a source table which is under SQL 2014 and I am doing ETL on it (no transformation logic - just one to one mapping). And this gets...
December 14, 2016 at 6:49 am
sqlandbiuser (12/13/2016)
Issue is still there. .. can you please provide your valuable inputs
I guess I'm confused as to what has changed from last week? You still have this...
December 13, 2016 at 12:14 pm
xsevensinzx (11/8/2016)
Personally, I see no problem with multiple data warehouses if there is...
December 12, 2016 at 10:27 am
Offhand, I'm thinking the problem is the use of the @Counter variable in the recursive part of the CTE query. Maybe something like this instead:
with cte as (
...
December 9, 2016 at 11:00 am
Welsh Corgi (12/9/2016)
USE msdb;
GO
EXEC sp_send_dbmail
@recipients='mark@mark.com',
@subject='Client Report',
@body='Please find your latest report attached',
@file_attachments='D:\MyTable.csv';
[/code][/code]
If you're just sending the results of a query, you can...
December 9, 2016 at 10:26 am
Viewing 15 posts - 1,186 through 1,200 (of 1,838 total)