Viewing 15 posts - 931 through 945 (of 1,409 total)
Remember, the output is only quaranteed in a specific order if you specify the ORDER BY in the query. How the data is phisically structured is not importand.
July 15, 2013 at 5:38 am
I notice a warning about the "cluster validation". Please run the cluster validation check from Windows and correct all reported problems.
I notice the message stating "clustered disk unavailable". Are the...
July 15, 2013 at 3:17 am
Phil Parkin (7/15/2013)
I think you might need to add a comma between the column names ...
You're absolutely right!! I have to look better if I copy/paste from a post.:hehe:
July 15, 2013 at 3:03 am
INSERT INTO table2
SELECT FDT1, TODT1 FROM table1
UNION ALL
SELECT FDT2, TODT2 FROM table1
Edit: corrected the code with comma's between the columns
July 15, 2013 at 1:38 am
The error is given because the specified file allready exists and the file is currently in use. Probably a database with the same name does exist on the SQL instance....
July 15, 2013 at 1:35 am
If you want to pass an unicode value to a stored procedure, you first need to set the value to a variable. Then pass the variable to the stored procedure:
declare...
July 15, 2013 at 1:10 am
You need to apply the "N" when you set the value of the variable and not when you use the variable to fileter your results. This will work:
declare @kat nvarchar(50)
set...
July 15, 2013 at 1:04 am
The [tempdb] is re-created every time the SQL Engine is (re-)started. There is no need and it's even not possible to create a backup of the [tempdb].
If you...
July 15, 2013 at 12:54 am
Double post: see http://www.sqlservercentral.com/Forums/Topic1473467-391-1.aspx
July 15, 2013 at 12:50 am
Add a filter to your query to select only the NULL values. Remember that because of the NULL values an equal sign doesn't work. You have to use the IS...
July 15, 2013 at 12:47 am
This code will give you the extra column with the first day of the month. I've calculated this with DATEADD combined with the DATEPART of [TimeStamp] and the 0...
July 15, 2013 at 12:43 am
SSIS is capable of doing very extensive filtering and transformations. Try it for yourself and if you run into trouble or need some help: on SSC is a special section...
July 13, 2013 at 2:30 pm
Koen Verbeeck (7/12/2013)
I think the error is coming from a job interview 🙂
I allways forget some posters ask questions for such reasons (interview, exam, school assignment). It's a shortcut and...
July 12, 2013 at 2:23 am
A connection time-out error can also occur if a query takes too much time to complete. In SQL Server there is a default time-out setting for remote connection of 60...
July 12, 2013 at 2:04 am
If you really want to import that much data into Excel, you need to upgrade to a newer version.
Excel 2010 is capable to handle a bit more then 1.000.000 (1...
July 12, 2013 at 12:41 am
Viewing 15 posts - 931 through 945 (of 1,409 total)